Ruby on Rails is an open source full-stack web application framework written in Ruby. It follows the popular MVC framework model and is known for its "convention over configuration" approach to application development.

learn more… | top users | synonyms (2) | ruby on rails jobs

115
votes
16answers
49k views

Library not loaded: libmysqlclient.16.dylib error when trying to run 'rails server' on OS X 10.6 with mysql2 gem

I've been struggling with this for some time. I've installed Rails 3, gem, mysql on my Snow Leopard machine. All was going well until I created my first project and tried to run rails server Upon ...
11
votes
1answer
3k views

Ignoring timezones altogether in Rails and PostgreSQL

I'm dealing with dates and times in Rails and Postgres and running into this issue: The database is in UTC. The user sets a time-zone of choice in the Rails app, but it's only to be used when ...
80
votes
3answers
53k views

Override devise registrations controller

I have added a field to the sign-up form that is based on a different model, see How do I use nested attributes with the devise model for the gory details. This part is working fine. The problem now ...
147
votes
9answers
56k views

Best way to load module/class from lib folder in Rails 3?

Since the latest Rails 3 release is not auto-loading modules and classes from lib anymore, what would be the best way to load them? From github: A few changes were done in this commit: Do not ...
108
votes
2answers
56k views

raw vs. html_safe vs. h to unescape html

Suppose I have the following string @x = "<a href='#'>Turn me into a link</a>" In my view, I want a link to be displayed. That is, I don't want everything in @x to be unescaped and ...
171
votes
18answers
71k views

Ruby on Rails and Rake problems: uninitialized constant Rake::DSL

I'm having a really frustrating issue: Rake is being dumb. Here's how the problem comes about: $ rails new test_app $ rails generate scaffold new_scaffold field1:string field2:text Both of those ...
148
votes
15answers
44k views

Repairing Postgresql after upgrading to OSX 10.7 Lion

I recently upgraded to OSX 10.7, at which point my rails installation completely borked when trying to connect to the psql server. When I do it from the command line using psql -U postgres it ...
285
votes
6answers
56k views

Understand Rails Authenticity Token

I am running into some issues regarding Authenticity Token in rails, as I did many times now. But I really don't want to just solve this problem and go on, I would really like to understand ...
174
votes
20answers
30k views

Using Rails 3.1, where do you put your “page specific” javascript code?

To my understanding, all of your javascript gets merged into 1 file. Rails does this by default when it adds //= require_tree . to the bottom of your application.js manifest file. This sounds like a ...
40
votes
4answers
19k views

Single Table Inheritance And where to use it in Rails

I am stuck in a weird Design problem, I am working on a two type of profiles Models, User profile (belongs to User) others that are maintain in-site as "bots" (doesn't belong to anybody) The ...
154
votes
14answers
44k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
125
votes
4answers
49k views

Rails :include vs. :joins

This is more of a "why do things work this way" question rather than a "I don't know how to do this" question... So the gospel on pulling associated records that you know you're going to use is to ...
61
votes
5answers
19k views

How to prevent browser page caching in Rails

Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3 The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your ...
112
votes
6answers
79k views

How do I parse JSON with Ruby on Rails?

I'm looking for a simple way to parse JSON, extract a value and write it into a db in Rails. Explicitly what I'm looking for is a way to extract a shortUrl from the JSON returned from the bit.ly API: ...
77
votes
9answers
53k views

Fully custom validation error message with Rails

Using Rails I'm trying to get an error message like "The song field can't be empty" on save. Doing the following: validates_presence_of :song_rep_xyz, :message => "can't be empty" ... only ...
200
votes
11answers
88k views

Uninitialized constant ActiveSupport::Dependencies::Mutex (NameError)

When I want to create a Ruby on Rails project, I get the message below. /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:55: uninitialized constant ...
321
votes
19answers
120k views

How do I get the current URL in Ruby on Rails?

How can I get the current absolute URL in my Ruby on Rails view? The request.request_uri only returns the relative URL.
112
votes
10answers
19k views

How to find where a method is defined at runtime?

We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but, due to ...
38
votes
6answers
49k views

Facebook how to check if user has liked page and show content?

I am trying to create a Facebook iFrame app. The app should first show an image and if the user likes the page, he will get access to some content. I use RoR, therefore I can't use the Facebook PhP ...
169
votes
8answers
52k views

How do I call controller/view methods from the console in Rails?

When I load script/console, some times I want play with the output of a controller or a view helper method. Are there ways to: simulate a request? call methods from a controller instance on said ...
146
votes
3answers
50k views

How to redirect to a 404 in Rails?

I'd like to 'fake' a 404 page in Rails. In PHP, I would just send a header with the error code as such: header("HTTP/1.0 404 Not Found"); How is that done with Rails?
144
votes
6answers
33k views

A concise explanation of nil v. empty v. blank in Ruby on Rails

I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come: blank? objects are false, empty, or a ...
189
votes
35answers
163k views

Best IDE for Ruby on Rails [closed]

Having moved from Java to Ruby, I am struggling to find a good IDE for Ruby. I used Eclipse on Java, so I tried Aptana Studio (previously Radrails), but it's not even half as good. Currently I am ...
115
votes
6answers
12k views

Rails 2.3-style plugins and deprecation warnings running task in Heroku

I'm upgrading to Rails 3.2, and running rake db:migrate gives me several errors of the form: DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will ...
20
votes
3answers
5k views

How do I override rails naming conventions?

I have a model named "clothing" which I want to be the singlular (one piece of clothing). By default, rails says the plural is clothings. Right or wrong, I think it will be more readable if the ...
63
votes
22answers
62k views

Rails, MySQL and Snow Leopard

I upgraded to Snow Leopard using the disc we got at WWDC. Trying to run some of my rails apps now complains about sql (in /Users/coneybeare/Projects/Ambiance/ambiance-server) !!! The bundled ...
46
votes
6answers
21k views

Rails extending ActiveRecord::Base

I've done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial). Thx!
51
votes
19answers
29k views

How can I avoid running ActiveRecord callbacks?

I have some models that have after_save callbacks. Usually that's fine, but in some situations, like when creating development data, I want to save the models without having the callbacks run. Is ...
228
votes
9answers
22k views

How to disable logging of asset pipeline (sprockets) messages in Rails 3.1?

Sprockets tends to be quite verbose in the (dev) log by default under Rails 3.1 (RC1): Started GET "/assets/application.css" for 127.0.0.1 at 2011-06-10 17:30:45 -0400 Compiled ...
119
votes
6answers
33k views

Can Rails Routing Helpers (i.e. mymodel_path(model)) be Used in Models?

Say I have a Rails Model called Thing. Thing has a url attribute that can optionally be set to a URL somewhere on the Internet. In view code, I need logic that does the following: <% if ...
47
votes
4answers
15k views

How to override to_json in Rails?

Update: This issue was not properly explored. The real issue lies within render :json. The first code paste in the original question will yield the expected result. However, there is still a ...
53
votes
8answers
37k views

WARNING: Can't verify CSRF token authenticity rails

I am sending data from view to controller with ajax and I got this error : WARNING: Can't verify CSRF token authenticity So I think I have send this token with data. Does anyone kno how can I do this ...
159
votes
13answers
24k views

What's the best manner of implementing a social activity stream?

I'm interested in hearing your opinions in which is the best way of implementing a social activity stream (Facebook is the most famous example). Problems/challenges involved are: Different types of ...
124
votes
7answers
53k views

Ruby on Rails: best method of handling currency / money

I'm new to Ruby on Rails and I'm working on a very basic shopping cart system. I have a table items that has a column price of type integer. I'm having trouble displaying the price value in my views ...
230
votes
6answers
51k views

How to remove rvm (ruby version manager) from my system?

How can I remove rvm (ruby version manager) from my system?
54
votes
3answers
17k views

Rails nested form with has_many :through, how to edit attributes of join model?

How do you edit the attributes of a join model when using accepts_nested_attributes_for? I have 3 models: Topics and Articles joined by Linkers class Topic < ActiveRecord::Base has_many ...
55
votes
17answers
26k views

OmniAuth & Facebook: certificate verify failed

I've followed Railscast #235 to try and set up a minimal Facebook authentication. I've first set up a Twitter authentication, as done by Ryan himself. That worked flawlessly. I then moved on to ...
67
votes
4answers
21k views

Difference between attr_accessor and attr_accessible

In RoR, what is the difference between attr_accessor and attr_accessible. From my understanding, using attr_accessor is used to create getter and setter methods for that variable, so that we can ...
37
votes
12answers
37k views

Rails model without database

I want to create a Rails (2.1 and 2.2) model with ActiveRecord validations, but without a database table. What is the most widely used approach? I've found some plugins that claim to offer this ...
40
votes
11answers
28k views

Using Rails, how can I set my primary key to not be an integer-typed column?

I'm using Rails migrations to manage a database schema, and I'm creating a simple table where I'd like to use a non-integer value as the primary key (in particular, a string). To abstract away from my ...
13
votes
1answer
5k views

Why can you not have a foreign key in a polymorphic association?

Why can you not have a foreign key in a polymorphic association, such as the one represented below as a Rails model? class Comment < ActiveRecord::Base belongs_to :commentable, :polymorphic ...
30
votes
9answers
13k views

postgreSQL group by different from mysql?

I've been migrating some of my mySQL queries to postgreSQL to use Heroku... most of my queries work fine, but I keep having a similar recurring error when I use group by: ERROR: column "XYZ" must ...
63
votes
5answers
26k views

`require': no such file to load — mkmf (LoadError)

I was trying to install rails on Ubuntu Natty Narwhal 11.04, using ruby1.9.1. I installed ruby using apt-get install ruby1.9.1-full which contains the dev package. I googled the error and all have ...
33
votes
5answers
21k views

therubyracer gem on windows

I've been peacefully developing on Windows without adding any gems for a few weeks now and today I decided to to a bundle update, but I cannot get through this gem called therubyracer. I have the ...
17
votes
2answers
6k views

Devise redirect after login fail

All the questions I've found are related for a successful login with the helper after_sign_in_path_for(resource) I have a login form in the index of the site, and when the login fails it redirects ...
204
votes
25answers
39k views

No route matches “/users/sign_out” devise rails 3

I've installed devise on my app and applied the following in my application.html.erb file: <div id="user_nav"> <% if user_signed_in? %> Signed in as <%= current_user.email ...
42
votes
4answers
13k views

Rails 3.1 asset pipeline: how to load controller-specific scripts?

If I generate a new controller in Rails 3.1, also a javascript file with the name of the controller will added automatically. Firstly, I thought this javascript file will used only, when the related ...
78
votes
7answers
22k views

Remove ActiveRecord in Rails 3

Now that Rails 3 beta is out, I thought I'd have a look at rewriting an app I have just started work on in Rails 3 beta, both to get a feel for it and get a bit of a head-start. The app uses MongoDB ...
30
votes
4answers
5k views

Many-to-many relationship with the same model in rails?

How can I make a many-to-many relationship with the same model in rails? For example, each post is connected to many posts.
54
votes
14answers
17k views

Is there a way to get a collection of all the Models in your Rails app?

Is there a way that you can get a collection of all of the Models in your Rails app? Basically, can I do the likes of: - Models.each do |model| puts model.class.name end Thanks in advance.

1 2 3 4 5 202