Ruby on Rails version 3.1.0 is a specific version of Ruby on Rails. Released on August 30th, 2011, it is the current version. It will be succeded by version 3.2.0. It brings many improvements to the Ruby on Rails web development framework, which is open-source and optimized for programmer ...

learn more… | top users | synonyms

115
votes
7answers
47k views

Rails 3.1 execjs and Could not find a JavaScript runtime

I'm trying to use the mongoid, deivse rails 3.1 template here and I keep getting an error stating execjs cannot find a javascript runtime. Fair enough when I didn't have any installed but I've tried ...
55
votes
14answers
6k 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 ...
43
votes
9answers
14k views

Upgrading from Rails 3 to Rails 3.1

How do you upgrade from Rails 3 to Rails 3.1 beta?
38
votes
3answers
6k 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 ...
36
votes
1answer
4k views

Using Rails 3.1 assets pipeline to conditionally use certain css

I'm in the process of building my first solo rails app using rails 3.1.rc5. My problem is that I want to have my site render the various css files conditionally. I'm using blueprint css and I'm trying ...
36
votes
18answers
12k views

Ruby on Rails 3.1 and jQuery UI images

I'm using Ruby on Rails (Edge, the development version), and Ruby rvm 1.9.2. application.js is as follows. //= require jquery //= require jquery-ui //= require jquery_ujs //= require_tree Where ...
28
votes
4answers
9k views

How to use compass with rails 3.1

I have searched and searched and all I could see was that to use compass with rails 3.1 was to just edit the Gemfile like so: gem 'compass', :git => 'https://github.com/chriseppstein/compass.git', ...
26
votes
2answers
5k views

Rails 3.1 on Ubuntu 11.04 via RVM - uninitialized constant Psych::Syck

gem install rails --pre ERROR: While executing gem ... (NameError) uninitialized constant Psych::Syck I can't seem to find any info on how to resolve this. Has anyone else had the same problem? ...
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 ...
24
votes
6answers
5k views

How to make Rails 3.1 use SASS (Over SCSS) as the default?

Having a hard time figuring out how to make SASS, not SCSS, as the default for stylesheets. I've tried making a sass_config.rb file with this: Sass::Plugin.options[:syntax] = :sass ...
22
votes
5answers
10k views

Rails 3.1 and jquery-ui assets

This was asked in another question, but none of the solutions appear to work for me in 3.1rc1. I'm trying to use the new assets stuff in rails 3.1 - I have the files: ...
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 ...
20
votes
2answers
6k views

Rails 3.1 - Pushing to Heroku - Errors installing postgres adapter?

I just upgraded to Rails 3.1 and the first app i've tried to deploy to Heroku has encountered a problem relating to Postgres adapter. I'm able to push the app to heroku but then when i try to migrate ...
19
votes
1answer
2k views

Annotate gem and rails 3.1

Does anyone has any idea why annotate does not work anymore in rails 3.1 ? When trying to run it with : $ rvmsudo bundle exec annotate --position before and given I've got the following in my ...
17
votes
3answers
5k views

Add a new asset path in Rails 3.1

Does anyone know how to add another folder to the asset pipeline in Rails 3.1? I'd like to serve app/assets/fonts the same way app/assets/images is served.
16
votes
1answer
3k views

Engine's assets with Rails 3.1

How should one provide assets in an engine in Rails 3.1? Where should they be located and can they be included automatically? Originally asked by Tomas Celizna posted here.
14
votes
4answers
3k views

blueprint css rails 3.1 help

My blueprint css works on my local machine, but when I push to heroku I get an error. I have blueprint stored in my app/assets/stylesheets folder and here are the stylesheet tags I'm using: <%= ...
14
votes
3answers
6k views

Rails 3.1 serving images from vendor/assets/images

I am trying to put some external images (used by a jQuery plugin) to vendor/assets/images in my Rails 3.1 app. Problem is that when I try something like: <%= image_tag ...
14
votes
5answers
4k views

How to manage CSS Stylesheet Assets in Rails 3.1?

I'm just learning the new asset pipeline in Rails 3.1. One particular problem I'm having is with the way Sprockets just mashes all the found CSS stylesheets into one massive stylesheet. I understand ...
13
votes
7answers
2k views

Reference checklist for starting a new Rails application?

It's easy to create a new Rails application using "rails new myapp" (or start with a template from Rails Wizard or the RailsApps project). But after that, what do you do? What gems do you always add? ...
13
votes
2answers
1k views

How do I prevent Rails 3.1 from caching static assets to Rails.cache?

I'm using CloudFlare CDN on my Rails 3.1 application. Cloudflare is a CDN that works at the DNS level. On the first hit to a static asset, CloudFlare loads it from your app then caches it in their ...
13
votes
2answers
2k views

Rails 3.1 asset pipeline: how to load controller-specific scripts?

When you add a new controller in Rails 3.1, a new JS file added, fx, controller.js.coffee. I thought this file is included ONLY when this controller is called. But it seems like default instruction ...
13
votes
1answer
251 views

Does the asset pipeline rails 3.1 waste cycles?

In rails 3.1, does .coffee and //= require files get processed only once or with each asset request? For example,I have a file //= require source/main.js.coffee //= require source/second.js.coffee ...
13
votes
3answers
2k views

How do I write a Rails 3.1 engine controller test in rspec?

I have written a Rails 3.1 engine with the namespace Posts. Hence, my controllers are found in app/controllers/posts/, my models in app/models/posts, etc. I can test the models just fine. The spec for ...
12
votes
1answer
5k views

Rails 3.1 asset precompilation

I want Rails 3.1 to pick up more of my assets for precompilation. In particular, the default matcher for compiling files doesn't add .js files from vendor/assets/javascripts. I can just add the assets ...
12
votes
1answer
2k views

Ruby on Rails 3.1 without execjs?

If you install Ruby on Rails 3.1 the gem execjs gets installed by default. I excluded CoffeeScript, because I thought it needed execjs, but execjs wants to be installed anyway. Is execjs now a ...
11
votes
2answers
532 views

eliminating Rails 2.3-style plugins and deprecation warnings

I'm upgrading to Rails 3.1, 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 be ...
10
votes
4answers
4k views

Rails 3.1 error - Could not find a JavaScript runtime?

I created a new project using rails 3.1.0.rc4 on my local machine but when i try to start the server I get: Could not find a JavaScript runtime. See here for a list of available runtimes. ...
10
votes
2answers
710 views

How do you write DRY, modular coffeescript with Sprockets in Rails 3.1?

I'm in the early stages of trying to write some sensible Javascript. I want to namespace basically everything under the name of my application to avoid globals as much as possible, but still give me a ...
10
votes
1answer
1k views

How do I associate a CoffeeScript file with a view?

Just installed rails 3.1 rc1 and am trying to grok the best way to manage javascript with the new asset pipeline By default all coffeescript is compiled into a single application.js file, this is a ...
9
votes
3answers
181 views

ActionMailer not showing spaces in text mailer

I have an ActionMailer controller that's supposed to send this file: /user_mailer/welcome_email.text.erb This is the (sample) content of the file: Welcome to znood.com, <%= @user.name %> ...
9
votes
2answers
321 views

Rails HTTP streaming with HAML

There appears to be an issue with using HTTP streaming with HAML projects in rails. It works perfectly if I use ERB instead. Apparently, I'm not the only one with this problem. It doesn't work with ...
9
votes
4answers
1k views

Rails 3.1 with Asset Pipeline, link_to :confirm message showing twice?

Okay, so I've seen this question about this problem being caused by multiple linkings of jQuery or Prototype, but I can confirm that I'm only linking to jQuery once on the entire page. My problem is ...
9
votes
3answers
4k views

Rails 3.1 Deployment to Heroku Error

I'm trying to deploy my app to Heroku, I've done this before on my Windows machine, and now I am currently using a mac. I'm trying to use Postgresql for the first time. I have the following in my ...
8
votes
7answers
233 views

How to write negative loop in ruby like for(i=index; i >= 0; i --)

I am new with ruby. wish to know how to write following loop in ruby. var index=25; for (i = index; i >= 0; i--) { print i; } Thanks in advance
8
votes
2answers
4k views

How do I keep all gems in Gemfile compatible after an update

My question has already been asked here, but I am trying to understand the reasons behind it as opposed to how to work around it. The error I got was; You have already activated rspec-core 2.7.1, ...
8
votes
1answer
722 views

Listing 'rake routes' for a mountable Rails 3.1 engine

I'm working on a mountable engine for use with Rails 3.1, and I want to list the engine's routes. I created the engine using: $ rails plugin new rails_blog_engine --mountable And edited the ...
8
votes
4answers
2k views

Using Less in a Rails 3.1 App

I've just upgraded my application to the latest release of rails (3.1) and I'm wanting to integrate Twitter's Bootstrap into my application but it uses LESS and not SASS which is what Rails 3.1 uses ...
8
votes
4answers
551 views

How to display controller specific javascript in rails 3.1?

I have my assets folder structure like this assets javascripts products --product.js --productValidate.js store --store.js I want the project.js and projectValidate.js ...
8
votes
6answers
690 views

How to upgrade a Rails 3.0 app to Rails 3.1?

I have a Rails 3.0 app (technically 3.0.7) which I would like to upgrade to Rails 3.1 to make use of the new asset pipeline and other fancy new features. What is the best approach to doing this? ...
8
votes
5answers
2k views

Rails 3.1 - CSRF ignored?

here my problem, I've got a rails 3.1 app and I'm trying to make an ajax request but I get the warning message "WARNING: Can't verify CSRF token authenticity"… Inside my layout I've got the helper ...
8
votes
1answer
454 views

Prevent Rails 3.1 (webrick?) from logging assets rendering

Every time I load a page, webrick pollutes its log with lots of assets rendering lines. I want it to render assets, but I don't want it to be logged, because it makes it really difficult to look into ...
8
votes
2answers
751 views

Rails 3.1 asset pipeline doesn't pick up changes to @import'd sheets

I use @import'd partial sheets to organize my css/sass: /app /assets /stylesheets _constants.sass _layout.sass ... app.css.sass app.css.sass: @import _constants.sass ...
8
votes
1answer
332 views

Using CDN hosted JS libraries for production in Rails 3.1

I'm experimenting with Rails 3.1 which uses Sprokets 2.0 as its "asset pipeline" and trying to set it up to use CDN-hosted libraries when in production, but local hosted file for development. I.e., ...
8
votes
3answers
2k views

Rails 3.1 assets caching on heroku

Even if I already rake assets:precompile-ed all my assets, I still seem to have a hard to getting heroku to cache them correctly. I keep getting things like 2011-06-04T16:40:20+00:00 app[web.1]: ...
8
votes
1answer
1k views

Carry Sass variables through the Assets Pipeline, Rails 3.1 rc1

I recently branched one of my Rails 3.0 projects with the 3.1 rc1 to try the new assets pipeline. I've been using Sass in the project before going 3.1 so I've been setting up some variables and ...
7
votes
2answers
2k views

newbie: error message when 'rake -T'

I am using Ruby Enterprise Edition for my project. When I check all my rake task by run the command rake -T , I got the following error message: You have already activated rake 0.9.2.2, but your ...
7
votes
2answers
536 views

undefined method `sass' for #<Rails::Application::Configuration on Heroku

I've looked around a bit and didn't find similar errors reported. I don't recall having modified my production.rb. And for good measure, here's my application.rb Here's the stack trace from Heroku. ...
7
votes
2answers
1k views

rake assets:precompile is slow

The command "rake assets:precompile" works very slow for me. Especially on my Amazon EC2 Micro production server which does not have a lot of processor resources. On EC2 I have to wait 1 minute or ...
7
votes
2answers
283 views

Arel Deprecation Warning when running rake db:create

I'm trying to create an app in Rails 3.1 with mysql2 v 0.2.6. When running rake db:create, I get the following error: DEPRECATION WARNING: Arel::Visitors::VISITORS is deprecated and will be removed. ...

1 2 3 4 5 64