Hi,
I'm trying to get an app into production which requires precompiling
the assets, however:
rake assets:precompile --trace
** Invoke assets:precompile (first_time)
** Execute assets:precompile
rake aborted!
gears.png isn't precompiled
(in
/home/nano/.bundler/ruby/1.8/active_scaffold-801719cc0723/app/assets/stylesheets/active_scaffold.css.erb)
Tasks: TOP => assets:precompile
(See full trace by running task with --trace)
css declarations looks fine (asset_path) and images are there.
in Gemfile:
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'sass'
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
and application.rb:
Bundler.require *Rails.groups(:assets => %w(development test))
config.assets.enabled = true
config.assets.version = '1.0'
config.generators do |g|
g.template_engine :haml
g.stylesheet_engine :sass
end
--
You received this message because you are subscribed to the Google Groups
"ActiveScaffold : Ruby on Rails plugin" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/activescaffold?hl=en.