Ruby on Rails 3.0 is the latest version of Ruby on Rails, the open-source web development framework designed to make programmers happy and productive. Rails 3.0 brings a bunch of new features and improvements over older Rails versions, including: Brand new router with an emphasis on RESTful ...
119
votes
8answers
22k views
Undefined method 'task' using Rake 0.9.0
I just updated Rake to the latest version (0.9.0.beta.4) and the rake command ends up with the following error message:
rake aborted!
undefined method `task' for ...
80
votes
5answers
25k views
How to fix the uninitialized constant Rake::DSL problem on Heroku?
I am getting errors similar to the ones in these questions, except mine are occuring on Heroku:
2011-05-30T09:03:29+00:00 heroku[worker.1]: Starting process with command: `rake jobs:work`
...
76
votes
16answers
12k 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 ...
76
votes
7answers
5k 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 ...
73
votes
5answers
23k views
How to rename a database column in rails using migration?
I wrongly named one column hased_password. It should have been hashed_password instead.
Can I use a migration to correct it?
71
votes
5answers
15k views
Global access to Rake DSL methods is deprecated
I am working through the Ruby on Rails 3 tutorial book and typed the following on the command line:
rake db:migrate
which produced the following warning.
WARNING: Global access to Rake DSL methods ...
62
votes
7answers
21k 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 ...
55
votes
11answers
16k 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 ...
47
votes
13answers
43k views
Installing mysql2 gem for Rails 3
I am having some problems when trying to install mysql2 gem for Rails 3. When I try to install it by issuing "bundle install" command or "gem install mysql2" it gives me following error "Error ...
43
votes
4answers
29k 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
...
43
votes
9answers
14k views
42
votes
7answers
1k views
Why is rails bootstrap so slow and what can I do about it?
Rails 3.0 is a serious dog. I've been developing on Rails for 5 years, and it's never been slower to startup. In particular, tests take forever to bootstrap on a top notch MacBook with SSD, so ...
40
votes
1answer
1k views
Capybara does not pass header after form submit
I am building a Rails 3 app which renders different views for mobile devices (using jQuery Mobile) and regular desktop browsers. I am testing with Cucumber/Capybara, and have separate test suites for ...
39
votes
15answers
20k views
rails error, couldn't parse YAML
After updating the gems I've got this:
/home/megas/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/psych.rb:148:in `parse': couldn't parse YAML at line 182 column 9 (Psych::SyntaxError)
from ...
37
votes
4answers
10k 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 ...
31
votes
4answers
5k views
bundle install and rbx-require-relative
After following railstutorial.orgI am trying to run bundle install. It list use of gem like :
Using railties (3.0.7)
Using rails (3.0.7)
Using sass (3.1.3)
And this error :
Installing ...
30
votes
5answers
11k views
Rails 3 authentication solutions
I poked around StackOverflow and Google, but couldn't find anyone who has put together a comparison of authentication gems or plugins for Rails (I'm looking for something for Rails 3). What ...
28
votes
2answers
16k views
Install mysql2 gem on Snow Leopard for Rails 3 with rvm
I have recently upgraded to Rails 3 and created a new application with Rails 3.0.3, but I keep getting an error
Macintosh:$ rails server
=> Booting WEBrick
=> Rails 3.0.3 application starting in ...
27
votes
2answers
10k 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:
...
26
votes
4answers
2k views
Rails Admin vs. ActiveAdmin
I've been looking into some rails admin plugins and came across these two:
https://github.com/gregbell/active_admin
https://github.com/sferik/rails_admin
Any suggestions as to which one to go with. ...
26
votes
3answers
3k views
Rails 3.1: Engine vs. Mountable App
Can someone help me understand the differences between a Rails Engine and a Mountable app? In Rails 3.1, you can create either one with the "rails new plugin ___" command.
rails plugin new forum ...
25
votes
12answers
3k views
Can't stop WEBrick 1.3.1 with ctrl-c on Ubuntu 11.04
I'm using RVM, Ruby 1.9.2, and Rails 3.0.7
A standard kill of the process from another terminal doesn't work, either, but kill -9 does, of course.
I found a similar question, CTRL+C to Webbrick ...
25
votes
13answers
11k views
Exception Notification Gem and Rails 3
I'm trying to get this up and running, but I see "uninitialized constant ExceptionNotifier" whenever I start my server.
http://github.com/rails/exception_notification
In my Gemfile I have
gem ...
25
votes
5answers
8k views
Rails 3 - no such file to load — openssl
when running a Rails server, I get the following error:
no such file to load -- openssl
I try a solution I find online. I go to ~/.rvm/src/ruby-1.9.2-head/ext/openssl. I type : ruby extconf.rb, but I ...
25
votes
8answers
6k views
Rails 3 full-text search options (gems, plugins, etc)
I was wondering if there were any suggestions for how to best roll with full text searching in your Rails 3 apps? Thinking Sphinx and acts_as_ferret aren't updated for Rails 3 yet, and even basic ...
25
votes
14answers
795 views
What would you like to see in a book about Rails 3?
Now that I'm quite a ways into this book I can announce that it's Rails 3 in Action.
I'm thinking of writing a book about Rails 3 and I have a basic idea of what I want to write about, but really ...
24
votes
5answers
8k views
Rails 3 Authentication: Authlogic vs Devise
I have always used Authlogic in Rails 2.3 but now that I am using Rails 3 I think I might try out a new authentication solution.
How does Devise compare with Authlogic? What are their differences?
...
24
votes
2answers
6k views
How do I make an RSS/Atom feed in Rails 3?
I'm pretty new to Rails 3, and I'm trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look like?
Thanks!
24
votes
2answers
4k views
How should I create a REST API using Rails 3.0?
I can't seem to find much information on the web about the different approaches to building a REST API in Rails; so I kinda have two questions:
Can someone point me to some articles that show the ...
23
votes
6answers
12k views
version of mysql2 (0.3.2) doesn't ship with the ActiveRecord adapter bundled anymore as it's now part of Rails 3.1
Hi i am using rails version 3.0.7 when i run rails generate model task name:string i m getting following warning
WARNING: This version of mysql2 (0.3.2) doesn't ship with the ActiveRecord adapter ...
23
votes
1answer
8k views
Rails 3: Validate combined values
In Rails 2.x you can use validations to make sure you have a unique combined value like this:
validates_uniqueness_of :husband, :scope => :wife
In the corresponding migration it could look like ...
22
votes
4answers
4k views
22
votes
2answers
5k views
Rails 3 SSL routing redirects from https to http
This question relates to this SO question and answer (rails-3-ssl-deprecation
) where its suggested to handle ssl in rails 3 using routes.rb and routes like:
resources :sessions, :constraints => ...
21
votes
4answers
4k views
What is the value of Compass for Rails 3.1?
I'm trying to decide if I should include Compass when starting a new Rails 3.1 project. I haven't used Compass before.
Rails 3.1 now supports SCSS directly. The Rails 3.1 asset pipeline (via ...
21
votes
5answers
9k views
Rails 3.1 asset pipeline and manually ordered Javascript requires
I am trying to convert an existing app to the new 3.1 asset pipeline layout, and want to include a lot of vendor files that have to be in a specific order, (underscore.js and backbone being one pair). ...
21
votes
2answers
2k views
Rails 3 initializes extremely slow on Ruby 1.9.2
I'm using RVM for managing environment, installed Ruby 1.9.2.p136 (i think its latest release.) and Rails 3, created gemsets and run bundler. everything working good so far
but;
Rails initalizes ...
20
votes
10answers
809 views
do..end vs curly braces for blocks in Ruby
I have a coworker who is actively trying to convince me that I should not use do..end and instead use curly braces for defining multiline blocks in Ruby.
I'm firmly in the camp of only using curly ...
20
votes
2answers
2k views
Ruby - Difference between map and collect?
I have Googled this and got patchy / contradictory opinions - is there actually any difference between doing a map and doing a collect on an array in Ruby/Rails?
The docs don't seem to suggest any, ...
20
votes
1answer
5k views
using “rails generate scaffold” when model already exists
I'm new to rails so my current project is in a weird state. One of the first things I created was a "Movie" model. I then started defining it in more detail, added a few methods, etc.
As a newbie ...
20
votes
2answers
3k views
Restoring Rails 3's Bundle Install Path… It's now install in my root
I did something while trying to install the vestal_versions plug-in that ended up creating a vestal_versions directory in my app's root with the following:
- Application
- APP
- DB
- ...
20
votes
4answers
6k views
How do I vendorize gems for Rails3/Bundler
In Rails 2.X, I could simply copy gems into vendor/gems/gem_name, or use the rake command rake gems:unpack. Since Rails3 uses bundler, it doesn't appear to work anymore. I have found the command ...
19
votes
5answers
1k views
Rails 3 RSpec 2 NetBeans integration
NetBeans 6.9 provides a custom Runner class for RSpec to be integrated into the IDE. I'm trying to get my Rails 3 applications specs to be correctly displayed inside NetBeans, but RSpec 2 seems no ...
19
votes
6answers
7k views
Rails 3 authetication with OpenID, Twitter or Facebook
Can you suggest some working example of it? I tried Authlogic and Devise withous success.
19
votes
3answers
10k views
Where did link_to_function disappear to in Rails 3?
I was just playing around with Rails 3 beta and noticed that link_to_function is now gone. I presume there's an alternate method of achieving the same result (onclick event?) but I was wondering if ...
18
votes
7answers
7k views
How does one load a CSS framework in Rails 3.1?
I am trying to load a CSS framework, Blueprint, onto my Rails 3.1 application.
In Rails 3.0+, I would have something like this in my views/layouts/application.html.erb:
<%= stylesheet_link_tag ...
18
votes
2answers
2k views
How to test Rails 3 Engines with Cucumber & Rspec?
I apologize if this question is slightly subjective... I am trying to figure out the best way to test Rails 3 Engines with Cucumber & Rspec. In order to test the engine a rails 3 app is ...
18
votes
2answers
8k views
Ruby 1.9 - invalid multibyte char (US-ASCII)
Im trying to make my rails application (2.3.5) to run on Ruby 1.9, I've this function that make some transformations on a string:
def replace_special_chars(downcase = true)
if downcase
string = ...
18
votes
11answers
4k views
strange bundler error: tar_input.rb:49:in `initialize': not in gzip format (Zlib::GzipFile::Error) on bundle pack
i am getting a strange bundler error when running
bundle pack
with bundler 0.9.12
any ideas? (see pastie for a better formatted code: http://pastie.org/881328 )
...
17
votes
2answers
2k views
Rails 3.1 is very slow in development-mode because of assets, what to do?
After I added the sprocket gem rails is loading very slow in developmentmode, what should I do to speed it up?
17
votes
5answers
317 views
Rails Models: how would you create a pre-defined set of attributes?
I'm trying to figure out the best way to design a rails model. For purposes of the example, let's say I'm building a database of characters, which may have several different fixed attributes. For ...