jmcguckin
2013-Jan-03 10:31 UTC
Trying to add bootstrap to existing project, getting CSS compile error: missing file
Trying to add bootstrap to an app being ported to Rails 3.2.3. I get the following error: Error compiling asset application.css: Sass::SyntaxError: File to import not found or unreadable: bootstrap. Here''s my gem file: source ''http://rubygems.org'' gem ''rails'', ''3.2.9'' group :assets do gem ''sass-rails'', ''~> 3.1'' gem ''bootstrap-sass'', ''~> 2.0.0'' gem ''coffee-rails'', ''~> 3.2.2'' gem ''uglifier'', ''>= 1.2.3'' end # gem ''mysql2'',''0.2.6'' gem ''mysql2'',''0.3.11'' gem ''acts-as-taggable-on'' #gem "will_paginate", :git => ''git://github.com/mislav/will_paginate.git'', :branch => ''rails3'' gem ''kaminari'' gem "jquery-rails" gem "annotate" gem "bcrypt-ruby", :require => "bcrypt" The bootstrap gem install with no errors, but I can''t see where it install any files in the rails application directory tree. I''m really stumped by this. Thanks, Joe -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/vcsICJVP0QcJ. For more options, visit https://groups.google.com/groups/opt_out.
tamouse mailing lists
2013-Jan-04 03:14 UTC
Re: Trying to add bootstrap to existing project, getting CSS compile error: missing file
On Thu, Jan 3, 2013 at 4:31 AM, jmcguckin <mcguckin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Trying to add bootstrap to an app being ported to Rails 3.2.3.> group :assets do > gem ''sass-rails'', ''~> 3.1'' > gem ''bootstrap-sass'', ''~> 2.0.0'' > gem ''coffee-rails'', ''~> 3.2.2'' > gem ''uglifier'', ''>= 1.2.3'' > > endI have bootstrap-sass outside of group :assets and it''s working fine... -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.