Ruby on Rails is an open source full-stack web application framework created by David Heinemeier Hansson (DHH) in 2004 using the Ruby programming language. It is an optimized framework aimed at programmer happiness and sustainable productivity by making use of Convention over configuration, Don't ...

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

137
votes
15answers
54k 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 ...
149
votes
4answers
34k 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 ...
53
votes
15answers
30k 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 ...
33
votes
5answers
6k views

Ruby/Ruby on Rails ampersand colon shortcut

In Ruby (actually only in Rails, apparently), I know that if I do: some_objects.each(&:foo) It's the same as some_objects.each { |obj| obj.foo } That is, &foo creates the block { |obj| ...
35
votes
3answers
27k views

Override devise registrations controller

I have added a field to the sign-up form that is based on a different model, see http://stackoverflow.com/questions/3544265/how-do-i-use-nested-attributes-with-the-devise-model for the gory details. ...
45
votes
1answer
20k 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 ...
210
votes
36answers
31k 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 ...
0
votes
2answers
74 views

What does “temps.each(&:valid?)” mean in Ruby? [closed]

Possible Duplicate: What does map(&:name) mean in Ruby? What does the &:valid? found in the each mean? I've seen .each do |r| or whatever, but not sure how this one works?
3
votes
1answer
397 views

What does map(&:name) do in this Ruby code?

Trying to understand Ruby a bit better, I ran into this code surfing the Internet: require 'rubygems' require 'activeresource' ActiveResource::Base.logger = ...
23
votes
4answers
12k 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 ...
88
votes
10answers
27k views

A cron job for rails: best practices?

What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
77
votes
7answers
28k 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 ...
84
votes
5answers
28k 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` ...
5
votes
1answer
201 views

Ruby Block Syntax Error [closed]

Possible Duplicate: Ruby block and unparenthesized arguments I'm not sure I understand this syntax error. I'm using Carrierwave to manage some file uploads in a Rails app, and I seem to be ...
1
vote
2answers
176 views

Why || and or behaves differently in rails? [closed]

Possible Duplicates: i = true and false in Ruby is true? What is the difference between Perl's ( or, and ) and ( ||, && ) short-circuit operators? Ruby: difference between || and ...
62
votes
22answers
60k 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 ...
149
votes
10answers
65k 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 ...
19
votes
6answers
26k 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 ...
56
votes
4answers
22k 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 ...
6
votes
2answers
1k views

How can I use option “--bare” in Rails 3.1 for CoffeeScript?

Someone know how can I use this option in Rails 3.1? Now CoffeScript puts a function with .call(this) on each file, but I want to remove this. EDIT: "Can't find variable” error with Rails 3.1 and ...
2
votes
4answers
157 views

What does ||= mean?

I have a protected method in my application contoller def current_user @current_user ||= User.find_by_id(session[:user_id]) end I was wondering what ||= means? I've been trying to search and find ...
33
votes
4answers
10k views

Override to_json in Rails 2.3.5

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

ruby-debug with Ruby 1.9.3?

I just updated to Ruby 1.9.3p0 and Rails 3.1.1. Now when I try to launch the server, it complains that I should install ruby-debug, even though it's already installed. % rails server ...
2
votes
2answers
1k views

Ruby map method syntax question [closed]

Possible Duplicate: What does map(&:name) mean in Ruby? I was watching railscasts more virtual attributes episode. In that episode, at one point, ryan used a map method syntax which I ...
43
votes
14answers
17k 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 ...
82
votes
11answers
23k 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 ...
62
votes
6answers
15k 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 ...
29
votes
16answers
16k 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 ...
8
votes
1answer
3k 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 ...
107
votes
10answers
15k 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 ...
70
votes
4answers
31k 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 ...
76
votes
13answers
10k 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 ...
24
votes
12answers
26k 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 ...
33
votes
10answers
8k 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.
14
votes
8answers
6k 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 ...
45
votes
15answers
10k views

Limitations in running Ruby/Rails on windows

In the installation documentation to RoR it mentions that there are many limitations to running Ruby on Rails on Windows, and in some cases, whole libraries do not work. How bad are these ...
20
votes
3answers
13k views

Rails 3 SSL Deprecation

I am upgrading an application to Rails 3.0.0 and am wondering if the standard method for adding SSL has changed (I vaguely remember demos indicating the router could now handle SSL, though I'm not ...
36
votes
9answers
30k 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 ...
57
votes
4answers
30k 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: ...
58
votes
11answers
10k 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 ...
35
votes
14answers
7k views

Composite primary keys versus unique object ID field

I inherited a database built with the idea that composite keys are much more ideal than using a unique object ID field and that when building a database, a single unique ID should never be used as a ...
17
votes
2answers
3k 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.
31
votes
2answers
9k 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 ...
5
votes
6answers
2k views

Extending controllers of a Rails 3 Engine in the main app

I am using a Rails engine as a gem in my app. The engine has PostsController with a number of methods and I would like to extend the controller logic in my main app, e.g. to add some methods. If I ...
-1
votes
5answers
777 views

Convert SHA1 back to string

I have a user model on my app, and my password field uses sha1. What i want is to, when i get the sha1 from the DB, to make it a string again. How do i do that?
116
votes
9answers
9k 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 ...
107
votes
18answers
17k 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 ...
111
votes
35answers
90k 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 ...
40
votes
4answers
23k views

How do I use gems with Ubuntu?

I recently upgraded to Ubuntu 9.04 and I have issues using gems. I installed Ruby, Rubygems and Rails using apt-get. The rails command does work. I then installed capistrano and other gems, such as ...
26
votes
6answers
16k views

ruby/ruby on rails memory leak detection

I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that ...

1 2 3 4 5 247