Ruby on Rails is an open-source, MVC web development framework written in Ruby.

learn more… | top users | synonyms (2)

212
votes
54answers
22k views

Learning Ruby on Rails

As it stands now, I'm a Java and C# developer. The more and more I look at Ruby on Rails, the more I really want to learn it. What have you found to be the best route to learn RoR? Would it be ...
169
votes
36answers
25k views

Rails or Django? (or something else?) [closed]

This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please ...
120
votes
10answers
52k 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 ...
112
votes
13answers
43k 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 ...
101
votes
11answers
34k views

How to get current URL in Rails?

How can I get the current absolute URL in my Rails view? The request.request_uri only returns the relative URL.
100
votes
4answers
27k 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 ...
96
votes
13answers
12k views

Where can I find good examples of Rails applications?

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. ...
92
votes
7answers
25k views

Good Ruby on Rails Free Hosting [closed]

What is the best place to go for free Ruby on Rails web hosting? I'm starting my project and I don't need a really good package for hosting, but if my project begins to grow then I'll pay for the ...
87
votes
10answers
12k 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 ...
81
votes
7answers
11k views

Heroku in real life apps

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 ...
81
votes
35answers
66k 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 ...
79
votes
5answers
23k 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` ...
79
votes
6answers
27k 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 ...
77
votes
13answers
35k 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 ...
77
votes
29answers
8k views

Why use Ruby instead of Smalltalk?

Ruby is becoming popular, largely from the influence Ruby on Rails, but it feels like it is currently struggling through its adolescence. There are a lot of similarities between Ruby and Smalltalk -- ...
70
votes
10answers
22k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
69
votes
6answers
4k 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 ...
69
votes
9answers
16k 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. ...
68
votes
8answers
22k views

Getting Started with RSpec - Looking for tutorials

I'm 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 doing ...
66
votes
4answers
20k 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?
65
votes
15answers
10k 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 ...
63
votes
2answers
15k views

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

How can I remove rvm (ruby version manager) from my system?
61
votes
22answers
58k 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 ...
60
votes
14answers
6k views

Why all the Active Record hate? [closed]

As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on Active Record. Often, people say that it doesn't scale well ...
58
votes
12answers
17k views

Why can't I install Rails on Lion using RVM?

I'm running into issues trying to install Rails on OS X Lion using RVM. So far, I have done the following: Installed Mac OS X Lion Version 10.7 (Build 11A459e). Installed XCode 4.1 Developer ...
58
votes
7answers
20k 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 ...
57
votes
7answers
16k 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> ...
57
votes
15answers
8k views

Why is Ruby more suitable for Rails than Python?

Python and Ruby are usually considered to be close cousins (though with quite different historical baggage) with similar expressiveness and power. But some have argued that the immense success of the ...
57
votes
12answers
19k 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: ...
57
votes
18answers
14k 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 ...
56
votes
4answers
24k views

Ruby on Rails: best method of handling currency / money

I'm in the process of learning Ruby on Rails and I've set myself the task of putting together a very basic shopping cart system. I have a table items that costs of a price column currently set to ...
56
votes
7answers
15k 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 ...
54
votes
3answers
15k 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? Thank you.
54
votes
3answers
11k views

JRuby on Rails vs. Ruby on Rails, what's difference?

I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails. What's the differences I need to look out for?
51
votes
9answers
15k 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 ...
50
votes
14answers
5k 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 ...
49
votes
5answers
11k views

undo scaffolding in rails

Is their anyway to 'undo' the effects of a scaffold command in rails?
49
votes
10answers
8k 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 some ...
48
votes
11answers
13k 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 ...
48
votes
5answers
8k 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 ...
48
votes
2answers
7k views

Do rails rake tasks provide access to ActiveRecord models?

I am trying to create a custom rake task, but it seems I dont have access to my models. I thought this was something implicitly included with rails task. I have the following code in ...
47
votes
25answers
9k views

What is your preferred way to produce charts in a Ruby on Rails web application?

I'd like to add some pie, bar and scatter charts to my Ruby on Rails web application. I want want them to be atractive, easy to add and not introduce much overhead. What charting solution would you ...
47
votes
20answers
7k views

Is Ruby On Rails ready for the Enterprise?

Is anyone out there using RoR for large scale, business critical enterprise applications? Are there any other lightweight web-frameworks based on dynamic languages that people are using for these ...
46
votes
13answers
12k views

Open Source Alternative to UserVoice or Get Satisfaction? [closed]

I've got a few small web projects where I'd like to get some user feedback however the services I've found are not cheap. To get to a useful level of features on UserVoice or Get Satisfaction I'd be ...
46
votes
5answers
12k 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, ...
45
votes
3answers
16k 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 ...
44
votes
10answers
33k views

Problem with mysql2 and rails3 (bundler)

`establish_connection': Please install the mysql2 adapter: `gem install activerecord-mysql2-adapter` (no such file to load -- active_record/connection_adapters/mysql2_adapter) (RuntimeError) from ...
44
votes
6answers
11k 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 ...
43
votes
6answers
8k views

Slow initial server startup when using Phusion Passenger and Rails

To jump on the band-wagon of Phusion Passenger we've setup a staging server for a small rails app to test things out. So far it has been very nice to use, it makes installing/configuring and ...
43
votes
4answers
13k views

What is causing this ActiveRecord::ReadOnlyRecord error?

This follows this prior question, which was answered. I actually discovered I could remove a join from that query, so now the working query is start_cards = DeckCard.find :all, :joins => [:card], ...

1 2 3 4 5 1237