chell
chell

Reputation: 7866

how to tell rails to use jquery development

I am a noob and am starting a new rails 3 application (3.0.7)

I will be using jquery and have read this on github:

javascript_include_tag(:defaults) call. While the plugin downloads minified and un-minified versions of jQuery and jQuery UI, only the minified versions are included in :default.

I have read on SO that in development its better to use uncompressed jquery and in production to use compressed.

How to I get Rails to use the un-minified version of jquery for production?

Upvotes: 2

Views: 426

Answers (1)

Ryan Bigg
Ryan Bigg

Reputation: 107718

You would have to define the javascript_expansions differently in config/environments/development.rb and config/environments/production.rb.

For example, in development.rb you could have this:

config.action_view.javascript_expansions = { :default => [:jquery] }

and in production.rb, this:

config.action_view.javascript_expansions = { :default => ["jquery.min"] }

Upvotes: 4

Related Questions