Ruby on Rails is an open-source web development framework written in Ruby. Ruby on Rails follows the principle of convention over configuration, freeing you from having to re-invent things to stay productive. Ruby on Rails 4.0 is the latest edge version available.

learn more… | top users | synonyms

1
vote
1answer
21 views

Easy way to separate strings in an array with commas in Rails with and before last string

I have a method to insert commas between strings and have an "and" before the last element: def commas(array) return '' if array.length == 0 return array.first if array.length == 1 return ...
0
votes
1answer
7 views

Is it possible to mix migrations file without harmful consequences?

Let me explain : I followed the M. Hartl tutorial and I did just like him with migrations. So now, I have the followings files in my db/migrate directory (I spare you the timestamps): ...
0
votes
0answers
2 views

how to completely remove rails 4.0.0.rc1 from Linux Mint v14 Nadia

I decided to completely remove rails 4.0.0.rc1 and install rails 3.2.13. I need instructions how to remove rails 4.0.0.rc1.
0
votes
1answer
13 views

How to generate Devise views in Rails 4

Devise's documentation says to enter the following to generate the views: rails generate devise:views However, when I enter that, rails gives me usage instructions: new-host-6:test4 scott$ rails ...
1
vote
1answer
14 views

Polymorphic associations : which migration file must I change?

I have two models : User and Product. I want to add a third, the Location. I created the Location model with : rails generate model Location address:string Accordingly to the guide, I modify the ...
1
vote
0answers
29 views

Can't get new Rails app with Devise to display sign_in/sign_up pages

I get the following error: ExecJS::RuntimeError in Devise::Sessions#new Showing C:/Users/me/RubymineProjects/my_project/app/views/layouts/application.html.erb where line #6 raised: (in ...
0
votes
0answers
8 views

Caching/Etag for Static Action in Rails 4

Since Rails 4 removed page caching and action caching, I'm wondering what is the Rails 4 way to cache an action that has no variables and has only html in the view? Should I fragment cache the static ...
0
votes
0answers
10 views

looking for Rails4-ready MongodB Object Mapper

I'm looking for document to install MongodB Object Mapper for Rails4. Information about ObjectMapper described here is for Rails 3. Googling did't help me. Can you anyone tell me where I can find ...
1
vote
1answer
16 views

I18n special characters in page title

I'm coding a rails app, and I have a problem with the title's page : In my config/locales/fr.yml I have this : fr:product:edit: "Modification de l'objet" And in my /app/views/products/edit.html.erb ...
0
votes
2answers
23 views

Rails 4: Where to put JavaScript/CSS plugins

I have Rails 4rc1 application. I need integrate some JavaScript/CSS plugins /3rd party libraries/ to my app. I know vendor/plugins directories are deprecated in Rails 4. So where can I put ...
2
votes
0answers
18 views

Rails 4: setting request.format does not update params[:format]

In Rails 3, params and request.parameters refer to the same object. With the addition of strong parameters in Rails 4, params now refers to a distinct instance of ActionController::Parameters that is ...
0
votes
1answer
27 views

Etags in Controller

Every rails etag example I've seen has been very simple with the fresh_when method being called as the last line in the controller. I'm trying to understand how the fresh_when method works for a ...
-1
votes
2answers
27 views

How to setup MongoDB

so I have this app. github app and this is what i get when I try to run it. Could not connect to a primary node for replica set <Moped::Cluster nodes=[<Moped::Node ...
0
votes
1answer
46 views

'twitter/bootstrap/bootstrap.less' wasn't found

I was trying to play with Twitter Bootstrap Basics using Rails 4.0.0.rc1 and ruby 1.9.3p392. Then I try to access http://localhost:3000/products I'm having error: ...
0
votes
0answers
19 views

Deploy ruby 2.0 and rails 4.0 on EC2 with beanstalk

I deployed my rails 4 app on EC2 with beanstalk. Since there is no ruby 2.0 and rails 4.0 container available currently, I just installed ruby 2.0 and rails 4.0 on the instance follow with this post: ...
0
votes
1answer
53 views

Ruby on Rails Tutorial by Michael Hartl Chapter 7.1.3 - Failing Test

I've spent a couple hours trying to figure out this tiny little piece of the puzzle before moving on in the tutorial so it doesn't blow up on my later. Because of that, I know issues where tests are ...
0
votes
1answer
26 views

Retrieve subset of many-to-many relationship in Rails/ActiveModel

As an example, I have Doctors with many Appointments with Patients. I want to retrieve all Patients who are currently active in an Appointment: class Doctor < ActiveRecord::Base attr_accessible ...
1
vote
2answers
69 views

Devise not working with Rails 4.0rc1

Is there a way to get Devise to work with Rails 4.0rc1? I get the following error when trying to start the rails server or even to generate the Devise views: ...
0
votes
1answer
18 views

basic file upload in rails with form helper

I'm trying to get my head around the basic file upload with the form helper in Rails using the edge rails guide (I'm using rails 4.0.0.rc1 and ruby 1.9.3p362) before I get into Paperclip or ...
0
votes
0answers
38 views

Namespaced form_for claims route does not exist

I've built this kind of structure lots of times before without issue, but this time I am stumped. I have an "admin" namespace defined in my routes like so: namespace :admin do resources :articles ...
0
votes
0answers
21 views

How to Pass SQL Paramater into aggregate function sum()

I'm attempting to pass a string as a parameter into an aggregate SQL function in Rails using find_by_sql. For example, I have the following method with an SQL query: def sendQuery(param) param = ...
0
votes
1answer
56 views

Breaking changes in Rails 4 JSON rendering?

I started a new app atop Rails 4 and I've noticed what seems to be a breaking change in how JSON rendering is implemented by default, but I can't find it written up anywhere so I was wondering if ...
0
votes
0answers
20 views

uninitialized constant ActiveRecord::Base::Delayed::Job

I am trying to add an owner field to DelayedJob. I found this SO answer showing a way to do it But when I code things up like mentioned in that answer, and in the rails console I do ...
0
votes
1answer
19 views

Rails 4 Engine not migrating migrations

I created a new rails 4 engine and added a model. I am trying to migrate the database using RAILS_ENV=test rake db:migrate and it comes back with no errors. However, when I run: rspec spec an ...
0
votes
1answer
13 views

How does cache_digests verify whether a model has changed?

My understanding (and correct me if I'm wrong) is that in the new cache_digests gem, cache keys for template fragments are created from a combination of an md5 hash of the template itself, template ...
0
votes
1answer
12 views

How to use a digest-aware asset for default_url in rails4?

In rails 3, to use an asset from the pipeline as the default_url in carrierwave's uploader, you did something like the following: class MyUploader # Include the Sprockets helpers for Rails 3.1+ ...
0
votes
0answers
31 views

Client-side authentication with emberjs and device in Rails4

Working with user resources is an essential part of every application an so there it's a task which should be automated as much as possible. As for Ember I found a tutorial ...
1
vote
0answers
15 views

Does request.body require rewind before read with Rails 4 and content-type application/json or is there a new approach?

When I post data to a Rails 4 application with Content-Type: "application/x-www-form-urlencoded" I can get the body of the request with request.body.read However, when I post data with Content-Type ...
0
votes
1answer
16 views

scopes with lambda and arguments in Rails 4 style?

I'm wondering how the following is done in Rails 4 or if I just use the Rails 3 approach for using a lambda that can pass an argument the same way with 4 as I do with 3. I'm pretty new to Rails 3 ...
0
votes
2answers
33 views

ActiveSupport::Concern, has_secure password not update some columns

I have a Recoverable module for my Customer model. Customer model using has_secure method for authentication. Here is the Customer model: class Customer < ActiveRecord::Base include Recoverable ...
0
votes
1answer
13 views

Rails: Replace Submit Button With Pure HTML

I have a simple form with several hidden fields: = form_for item.votes.new, remote: true do |f| = f.hidden_field :value, value; 1 = f.hidden_field :voteable_id, value: item.id = f.hidden_field ...
1
vote
2answers
48 views

strong_parameters gem and custom devise routes in Rails 4

I have upgraded to Rails 4 and have gone the strong_parameters route. The problem is that it's throwing the following error pointing to the customer registrations controller I'm using for Devise: ...
3
votes
1answer
52 views

Require dependency to get Rails subclasses

I have following setup: app/models/my_module/service.rb module MyModule class Service < ActiveRecord::Base def self.types self.subclasses end def self.raw_types ...
3
votes
1answer
44 views

Deprecation warning when using has_many :through :uniq in Rails 4

Rails 4 has introduced a deprecation warning when using :uniq => true with has_many :through. For example: has_many :donors, :through => :donations, :uniq => true Yields the following ...
0
votes
1answer
51 views

Ruby on rails 4 app not works in iframe

How can I embed my rails app into another website via iframe? It works nice with RoR 3, but not with RoR 4: <iframe src="http://myrailsapp.com/" width="100%" height="50" ...
0
votes
2answers
56 views

Rails 4 RC1 polymorphic association unable to create

THIRD UPDATE: Ok, now I am very close, I think. I now am creating data and the parameters are being set in the DB. I changed the business controller strong params to be: def business_params ...
1
vote
1answer
68 views

Using Rails & Devise with Ember.js

This question is based on this tutorial http://say26.com/using-rails-devise-with-ember-js. I don't know if I'm making a silly mistake or if the data-binding is just not working correctly. But when I ...
0
votes
2answers
62 views

Rails 4: before_filter vs. before_action

In rails 4.0.0.beta1 generators creates CRUD with before_action not before_filter. It seems to do the same thing. So what the difference?
1
vote
3answers
81 views

Rails 4.0rc1 app not running due to missing sqlite3 gem

First time I've tried installing Rails 4.0. On Windows 8 with Ruby 2.0 x64. Ran: gem install rails --version 4.0.0.rc1 --no-ri --no-rdoc Then I run: rails new test_app cd test_app rails s But ...
0
votes
1answer
100 views

Images won't load in Rails 4 asset pipeline

I'm hoping there's a simple answer to this. I'm using rails 4rc1 and and just building a little simple app to get myself familiar with 4.0. I tried adding an image to my view with this: <%= ...
1
vote
0answers
17 views

Test failure gives incomplete error message when using short syntax

There are 2 syntaxes (afaik) for writing tests with RSpec: The classic/old way: describe "when user_id is not present" do before { @micropost.user_id = nil } it "should not be valid" do ...
0
votes
0answers
53 views

Rails 4 strong params error: no implicit conversion of Symbol into String

I am importing the data from a spreadsheet to the app database. The data is parsed by rows. Each parsed row looks like: {:department=>{:school=>"Graduate School of Business", ...
0
votes
2answers
47 views

Formatting text in the model with Ruby on Rails

How can I make this MVC? class Product < ActiveRecord::Base validates :price, :presence => true def to_s "#{name} at #{number_to_currency(price)}" end end I need to ...
0
votes
1answer
68 views

ForbiddenAttributesError for polymorphic model in Rails 4

Rails 4 ships with strong_parameters, which is a great addition - but I've run into a problem with it. I have a polymorphic model Comment and I cannot for the life of me get the controller to accept ...
0
votes
1answer
41 views

Heroku precompile assets failed on Rail 4 app

I set config.assets.initialize_on_precompile = false in the application.rb. Assets were precompiled successfully locally by run RAILS_ENV=production bundle exec rake assets:precompile While the ...
1
vote
0answers
45 views

Active admin install with Rails 4

I got this error when installing active admin on Rails 4 http://pastie.org/7814514 I follow this instruction: http://www.activeadmin.info/documentation.html Anyone help please.
0
votes
1answer
120 views

Rails 4, RSpec, Capybara & webkit_server

I'm trying to use Rspec with capybara-webkit on a Rails 4 project and I'm getting an error to go with Capybara.default_host not being set properly. The webkit_server is installed properly and is in ...
0
votes
1answer
24 views

Rails PG::Error Presentation and Handling of Unique Constraint

I am developing on Rails 4 with postgres and devise. I have the following User model: # user model class User < ActiveRecord::Base extend FriendlyId friendly_id :username, :use => :slugged ...
8
votes
1answer
187 views

Why did Rails4 drop support for “assets” group in the Gemfile

In Rails 3, gems used exclusively to generate assets in the asset pipeline were properly placed in the assets group of the Gemfile: ... # Gems used only for assets and not required # in production ...
2
votes
0answers
89 views

CMS for Rails 4 + Ember.js

Is there a Rails gem that adds content management functionality to an existing Rails 4 application, which can be used for an Ember.js front-end via RESTful webservices + JSON?

1 2 3 4 5