Wrapping the bootstrap-sass gem in another gem causes asset manifests to break
问题 I'm trying to wrap the bootstrap-sass gem inside another gem (let's call it my-engine). Along the way, I'm building a small Rails application to test things out. As a first step, I wanted to make sure I could get bootstrap-sass working directly in my Rails application. The Gemfile for the Rails app looks like this: gem 'bootstrap-sass', '3.3.1.0' gem 'my-engine, path: "~/dev/my-engine" This works fine. The bootstrap assets are loaded into my Rails application and everything looks good. Now, I