Tagged Questions
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.
305
votes
19answers
113k 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.
290
votes
5answers
73k views
How can I rename a database column in a Rails migration?
I wrongly named a column hased_password instead of hashed_password.
How can I use a migration to rename this column?
264
votes
6answers
54k 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 ...
219
votes
5answers
49k views
How to remove rvm (ruby version manager) from my system?
How can I remove rvm (ruby version manager) from my system?
216
votes
9answers
21k 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 ...
198
votes
8answers
40k views
What does “WARN Could not determine content-length of response body.” mean and how to I get rid of it?
Since upgrading to Rails 3.1 I'm seeing this warning message in my development log:
WARN Could not determine content-length of response body. Set content-length of the response or set ...
197
votes
11answers
86k 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 ...
193
votes
24answers
37k 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 ...
192
votes
12answers
64k views
rails 3.1.0 ActionView::Template::Errror (application.css isn't precompiled)
I made a basic rails app with a simple pages controller with an index function and when I load the page I get:
ActionView::Template::Error (application.css isn't precompiled):
2: <html>
...
182
votes
35answers
157k 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 ...
170
votes
18answers
70k 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 ...
164
votes
8answers
50k 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 ...
162
votes
5answers
34k views
159
votes
20answers
28k 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 ...
153
votes
12answers
23k 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 ...
150
votes
13answers
42k views
A cron job for rails: best practices?
What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
147
votes
8answers
20k views
Heroku in real life apps [closed]
What is your experience with using Ruby on Rails on Heroku in a production environment?
Apart from the issue of the expensive HTTPS, do you see any drawback in the way it manages processes, memory ...
144
votes
15answers
42k 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 ...
143
votes
9answers
53k 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 ...
140
votes
3answers
47k 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?
140
votes
10answers
46k views
How to define custom configuration variables in rails
I was wondering how to add custom configuration variables to a rails application and how to access them in the controller, for e.g I wanna be able to define an upload_directory in the configuration ...
140
votes
0answers
5k views
Mercury editor's image insert trigger not working in Firefox in Windows Platform [closed]
Using the Mercury editor, I've defined a custom behavior for a button in my mercury.js as follows :
imageUpload: function(selection) {
Mercury.modal('/admin/assets/image_upload', {
title: ...
139
votes
6answers
30k 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 ...
139
votes
17answers
48k views
What is the best way to set default values in ActiveRecord?
What is the best way to set default value in ActiveRecord?
I see a post from Pratik that describes an ugly, complicated chunk of code: ...
132
votes
12answers
49k views
Getting Started with RSpec - Looking for tutorials
I am looking to get started building a project and want to use RSpec from day one. My Ruby background is limited; however, I do have a good understanding of MVC and the structure within Ruby.
In ...
132
votes
0answers
19k views
Where can I find good examples of Rails applications? [closed]
I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know which are any good.
...
120
votes
13answers
55k views
Ubuntu noob rails install fails on zlib
I've just moved over to Ubuntu 8.10 as my dev box; it's my first serious foray into Linux as a daily-use OS, and I'm having a hard time getting Rails going. I have followed a number of tutorials ...
119
votes
7answers
51k 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 ...
119
votes
4answers
46k 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 ...
118
votes
2answers
19k views
Ruby on Rails Server options [closed]
The whole issue of setting up a development server for my Ruby on Rails application confuses me. There are WEBrick, Mongrel, Passenger, Apache, Nginx and many more I am sure, and I dont really ...
118
votes
5answers
40k views
Purge or recreate a Ruby on Rails database
I have a dev Ruby on Rails database full of data. I want to delete everything and rebuild the database. I'm thinking of using something like:
rake db:recreate
Is this possible?
118
votes
7answers
37k views
How do you do relative time in Rails?
I'm writing a Rails application, but can't seem to find how to do relative time, i.e. if given a certain Time class, it can calculate "30 seconds ago" or "2 days ago" or if it's longer than a month ...
118
votes
8answers
21k views
When to use rspec let()?
I tend to use before blocks and set instance variables in them and then use them across my examples, but recently I came upon let(). According to rspec docs, it is used to
... to define a memoized ...
114
votes
6answers
31k 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 ...
114
votes
3answers
27k views
How do you write a migration to rename an ActiveRecord model and its table in Rails?
I'm terrible at naming and realize that there are a better set of names for my models in my Rails app. Is there a way to use a migration to rename a model and its table?
110
votes
16answers
48k 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 ...
110
votes
7answers
32k views
What is the easiest way to duplicate an activerecord record?
I want to make a copy of an activerecord record, changing a single field in the process (in addition to the id). What is the simplest way to accomplish this?
I realize I could create a new record, ...
110
votes
6answers
11k 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 ...
110
votes
23answers
25k views
Continuous Integration for Ruby on Rails?
I've been searching around for a Continuous Integration solution for Ruby on Rails, but haven't been too pleased with the results. I came from a .NET shop that used CruiseControl.NET and was really ...
108
votes
5answers
81k views
Rails 3.1 and Image Assets
Think I'm going mad on this one.
I am playing with rails 3.1 and I am having issues with images.
I have put all my images for my admin theme in the assets folder within a folder called admin. then
...
107
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 ...
107
votes
5answers
42k views
How to break out from a ruby block?
class Bar
def do_things
Foo.some_method(x) do |x|
y = x.do_somethign
return y_is_bad if y.bad? # how do i tell it to stop and return do_things?
...
104
votes
3answers
50k views
invalid multibyte char (US-ASCII) with Rails and Ruby 1.9
I'm using Ruby 1.9.1 with Rails 2.3.4 My application is to handle text input
If I try something like (the inside quotation marks look different)
text = "”“"
I get the following error:
...
104
votes
6answers
76k 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: ...
104
votes
9answers
23k views
Rails Model, View, Controller, and Helper: what goes where?
In Ruby on Rails Development (or MVC in general), what quick rule should I follow as to where to put logic.
Please answer in the affirmative - With Do put this here, rather than Don't put that there.
...
103
votes
4answers
32k views
How to use rspec's should_raise with any kind of exception?
I'd like to do something like this:
some_method.should_raise <any kind of exception, I don't care>
How should I do this?
some_method.should_raise exception
... doesn't work.
103
votes
18answers
35k views
Invalid date format specification in gemspec
I am getting the following error when I try to use gems in windows, and I also referred to
this stackoverflow post and updated rubygems and rails. But nothing could solve the problem.
The following ...
101
votes
2answers
36k views
rail 3 where condition using NOT NULL
Using the rails 3 style how would I write the opposite of:
Foo.includes(:bar).where(:bars=>{:id=>nil})
I want to find where id is NOT null. I tried:
...
101
votes
1answer
13k views
In Ruby on Rails, what's the difference between DateTime, Timestamp, Time and Date?
In my experience, getting dates/times right when programming is always fraught with danger and difficulity.
Ruby and Rails have always eluded me on this one, if only due to the overwhelming number ...
100
votes
2answers
53k 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 ...

