more
more copied to clipboard
less on rails — the official LESS plugin for Ruby on Rails
Hello again, to make rake tasks appear in rails 3 applications, a Railtie is needed. Pull and you'll get it ;-). ~Marcello
Hello, I've just fixed the .gemspec - that included a wrong `FileList` - and regenerated it using Jeweler. Moreover, the removal of `require 'rake'` from the .gemspec fixes a bug...
Hi I've fixed a couple of Deprecation warnings in Rails 3.0.1/Ruby 1.9.2 by moving the require on the controller_extension into the top-level init.rb and using Rails.env instead of RAILS_ENV. I...
Do you have any plan to upgrade this plugin with rails 3 compatibility support??
Rails 3.rc has deprecated rails/init.rb. You should update the root init.rb like so: ``` require File.join(File.dirname(__FILE__), 'lib', 'less', 'controller_extension') if Rails.env.development? ``` Please note RAILS_ENV is also deprecated.
Currently, when you try to install more into a Rails 3 app, you get ``` Plugin not found: ["git://github.com/cloudhead/more.git"] ``` If you try to run script server, you get a...
Using this: ``` a { color: #038EA1; text-decoration: none; &:hover { text-decoration: underline; } } ``` Gives the error: ``` expected one of @import * - @ :: : ....
hello, their is a comment in lib/less/more.rb that states: By default, Less::More.parse will be called for each request in `development` environment and on application initialization in `production` environment. However, this...
script/plugin remove more - it removes the "more" directory out of vendor/plugins - but the plugin in is still loaded somewhere, because you get a "No such file or directory"...