A Rails engine allows you to share common functionality across applications in the form of a gem or a plugin.
Background I am creating a application that is made up of a core and several modules. The modules are rails …
ruby-on-rails-3 ruby-on-rails-plugins rails-enginesI am using a Rails engine as a gem in my app. The engine has PostsController with a number of …
ruby-on-rails ruby-on-rails-3 rubygems rails-enginesI have found a few articles addressing the issue of helpers within an engine not being accessible to the consuming (…
ruby-on-rails ruby-on-rails-3.1 rails-engines helpers view-helpersi'm using a Rails engine, but i need to customize some controllers actions. I actually forked the engine, and implementing …
ruby-on-rails rails-enginesHow can I add vendor/assets/javascripts/mymountableengine or vendor/assets/stylesheets/mymountableengine to my mountable engine's assets paths? I …
ruby-on-rails rails-enginesI have a request spec in a Rails engine. The view that is rendered calls a route and passes in …
ruby-on-rails rspec routing ruby-on-rails-4 rails-enginesI have a before_filter hook in my main app's application controller that does something like: (It doesn't just put …
ruby-on-rails-3 rails-routing rails-enginesI'm working on a mountable engine for use with Rails 3.1, and I want to list the engine's routes. I created …
ruby-on-rails routes ruby-on-rails-3.1 rails-routing rails-enginesI've been reading a lot on the topic and nothing seems to quite cover my needs. I'm sorry if I'm …
ruby-on-rails plugins model gem rails-enginesI have created a Rails Engine. I am having trouble using the seed command, if I run rake db:seed …
ruby-on-rails rails-engines seed