[Rails] Re: How to disable the asset pipeline?

2011-06-17 Thread Juliusz Gonera
Thanks, this clears it up. On Jun 17, 6:14 am, Dieter Lunn coder2...@gmail.com wrote: coffee-script requires execjs to compile the javascript files. Even with the asset pipeline disabled and coffee-script is required in your gemfile it will require execjs along with it. Dieter

[Rails] Re: How to disable the asset pipeline?

2011-06-16 Thread Juliusz Gonera
I'll just quote myself: I tried commenting out config.assets.enabled = true in application.rb or setting it to false. On Jun 16, 6:56 pm, Dieter Lunn coder2...@gmail.com wrote: In your application.rb file change config.assets.enabled to false. Dieter Lunnhttp://ubiety.ca -- You received

Re: [Rails] Re: How to disable the asset pipeline?

2011-06-16 Thread Dieter Lunn
Should have paid more attention sorry. Do you have the execjs gem installed? Dieter Lunn http://ubiety.ca On Thu, Jun 16, 2011 at 1:45 PM, Juliusz Gonera jgon...@gmail.com wrote: I'll just quote myself: I tried commenting out config.assets.enabled = true in application.rb or setting it to

[Rails] Re: How to disable the asset pipeline?

2011-06-16 Thread Juliusz Gonera
At the moment no. I recreated the gemset and commented out those lines in my Gemfile before running bundle install: #gem 'coffee-script' #gem 'uglifier' #gem 'jquery-rails' Seems it doesn't require a JavaScript runtime anymore. It seems weird to me though that with config.assets.enabled = false

Re: [Rails] Re: How to disable the asset pipeline?

2011-06-16 Thread Dieter Lunn
coffee-script requires execjs to compile the javascript files. Even with the asset pipeline disabled and coffee-script is required in your gemfile it will require execjs along with it. Dieter Lunn http://ubiety.ca On Thu, Jun 16, 2011 at 5:32 PM, Juliusz Gonera jgon...@gmail.com wrote: At the