A Rails engine allows you to share common functionality across applications in the form of a gem or a plugin. Engines can be considered miniature applications that provide functionality to their host applications. See http://guides.rubyonrails.org/engines.html

learn more… | top users | synonyms

2
votes
1answer
39 views

Are *all* specs for an engine expected to live in the dummy Rails app?

I'm using RSpec to test some engine models. My preference would be to test the parts that are independent from the (dummy) app outside of the app. I'd prefer to have non-app tests live at the top ...
0
votes
1answer
15 views

Rails decorators, overriding a Rails Engine

I'm writing some decorators to override a Rails Engine as described here. I'm trying to add a simple method to a class from the Engine, here's my code: # ...
0
votes
0answers
9 views

Sunspot/Solr raketasks not loading in Rails 3 Mountable Engine

I'm trying to add the sunspot_rails gem to my Rails Mountable Engine, so I can use Solr to do full text searches. Like it states in the README file I've added this to my Gemfile: gem "sunspot_rails" ...
0
votes
0answers
17 views

Rails 3 mountable engine: global methods?

Everything I read about Rails 3 mountable engines captured my interest, so I decided to make one and gather some experience on the matter. I generated the app running rails plugin new my_app ...
0
votes
1answer
21 views

Uninitialized constant Bandit::Engine

I have a Rails 3.2, Ruby 1.9 app that I'm attempting to setup with the bandit gem https://github.com/bmuller/bandit I've bundled installed the gem, run the bandit:install and modified the ...
0
votes
0answers
14 views

Run engine rspec/cucumber tests in the client app

I have mountable rails engine Users: users/ ... features/ ... specs/ dummy/ controllers/ models/ factories/ ... I have client app MySite, which use Users engine: ...
1
vote
2answers
82 views

Custom Views Scaffolding in Rails Engines

I'm trying to get custom scaffolding working from my engine. I followed some tutorial on customizing Rails 3.2 scaffolding in a normal Rails App and put my customized templates in the engines ...
0
votes
0answers
31 views

Rails Engine Override Asset Path

My main Rails 3.2 app includes a custom Rails Engine packaged as a gem that shares some common SCSS and font files. Requiring those JS and SCSS files using require in our main app's application.scss ...
0
votes
0answers
18 views

Rails Engines - simple possible engine to (1) add a model and (2) add the association in the containing class

I am trying to write my first engine but am having problems with the following scenario. In the host app, I will have User model (this is guaranteed so in the engine I can refer to User class rather ...
0
votes
1answer
26 views

Rails Engines - is it possible to add associations to the model in a container model like Forem does

This Question is more than a single question so breaking it up into more managable pieces: simple possible engine to (1) add a model and (2) add the association in the containing class I am testing ...
0
votes
1answer
27 views

Determine given module is rails engine

Hi I have two modules Admin Blog (Blog is a rails engine) where Admin is a module for namespacing admin features of app, but Blog is a module representing rails engine. Is there a better way to ...
1
vote
1answer
31 views

Custom Gem in /vendor/gems not Loading

I recently decided to take some functionality that I have in several of my Rails apps and extract it into an Engine. I have now finished the Engine and I'm trying to install the finished gem into one ...
0
votes
0answers
42 views

How to override model in my app?

i m using engine ... i want to override a user model from engine to my app... please tell me how to do Model in my local app looks like below require_dependency ...
2
votes
3answers
193 views

Multiple Rails engine rspec controller test not work

I have multiple Rails engines in my Rails 4 beta1 application. I'm installed rspec-rails gem to every engines. And I created my engine following command: rails plugin new store_frontend ...
2
votes
2answers
126 views

Rails - call to engine_name seems to be ignored

I want to make an Engine that is isolated by two namespaces. That is, let say for example I'd like to make an Engine whose classes all live in: Car::BMW And thus, my models for example should be ...
0
votes
0answers
19 views

Rails: Get engine name from its model object

Can I get name of my engine from a object of model present inside it? What I need is getting engine name from models object so that I can make a routes for it in my other engine. Thanks
0
votes
0answers
16 views

Rails: Mounting engine inside engine

I have got two engines A and B. A and B are already mounted in Application C. Mount A::Engine => "/a" MOUNT B::Engine => "/b" Now I have third engine D which is admin engine. Mount ...
0
votes
1answer
32 views

How to mount Rails 3 application to an existing Rails 2.3 application

I have a Rails 2.3 App. My requirement is simple, I need to mount Rails new version 3.2 to my existing Rails 2.3 version. Is it possible? Can I use Rails Engines for that ? Finally I want major ...
4
votes
1answer
154 views

Add new migrations from Rails engine gem to app via generator

I'm building a Rails engine in a ruby gem. It includes some migrations right now that are called when you run: rails g myengine:install The code in the generator is as follows: module MyEngine ...
0
votes
0answers
17 views

Rails engine dummy app models loaded in main app?

I have a main app with an isolated engine in which, I, in the dummy app define some models, just for testing purposes. These models are meant to live in the main app and integrate with the Engine. ...
3
votes
1answer
47 views

When overriding an ActiveRecord Model, and defining a new attr_accessible, how do I add without duplicating?

When I am using a Rails Engine, and desiring to override and add to its behavior, I have faced the following problem: Say the Engine has a ActiveRecord model named Course module MyEngine class ...
0
votes
0answers
71 views

Rails mountable engine routes not recognised

I made a mountable engine. In the engine I made a helper (located in /app/helpers/my_engine) which looks like this: module MyEngine module ApplicationHelper def link_to_login(label = "Login", ...
0
votes
1answer
156 views

Omniauth-Facebook callback does not get initialised in Rails Mountable Engine

I'm developing a mountable engine (called SimpleUser) which uses Devise, OmniAuth and OmniAuth-Facebook. First I made a test app with the gems about and every worked fine. Next, I started building the ...
0
votes
2answers
323 views

Rails Engine + Mongoid: No configuration could be found for a session named 'default'

I've created a Rails Mountable App and added 'mongoid' and 'rspec' gem's. If I try to run my specs now I get the following error: Mongoid::Errors::NoSessionConfig: Problem: No configuration could ...
0
votes
0answers
25 views

Rails 3 mountable engine missing protect_from_forgery call in ApplicationController

When a new rails app is created, its ApplicationController contains a call to protect_from_forgery. But when creating a mountable engine, the namespaced ApplicationController does not contain that ...
0
votes
1answer
51 views

Override refinerycms pages extension from another extension

I'm making redirecting extension and I'd like to make a decorator for find_page in PagesController in pages extension (to handle redirect if page is not found). Everything works fine if the decorator ...
0
votes
0answers
145 views

rails url link helper methods undefined using full engines

Rails 3.2.12 2/27/2013 We have a full rails engine called base2_cms with a model called "Event". There is no issue on running the engine using rails server. Next, another full rails engine called ...
0
votes
2answers
54 views

Are Rails engines supposed to come with an environment.rb?

I recently created my first Rails engine. The only thing in /config is routes.rb - no environment.rb or application.rb or anything like that. When I installed the rspec-rails gem and tried to run my ...
0
votes
1answer
392 views

RoR engines using JRuby - failed initial migration, bad

First time I try to set up rails mountable engine in project based on JRuby (necessary). Engine is empty only with one 'hello world' testing controller+view, without any model, no use of JSON. I ...
0
votes
1answer
66 views

Removing Rails Engine's Routes

I've read Overriding named routes provided by Rails 3 Engines and solicited some fresh answers, but all of the solutions feel pretty gross if you're goal is to remove routes in bulk. Prepending ...
0
votes
1answer
47 views

Rails app to engine

How we can convert a existing rails app(3.2.11) into a engine. We have some defined functionality in our rails app and we want to use this rails app functionality as engine so that we can ...
1
vote
1answer
30 views

Is Engine a reserved word in Rails?

I have a model named Engine, and I am able to use it in views and controllers without issues. The problem occurs when I use it in a model (for example, in callbacks or even simple instance methods). ...
1
vote
0answers
41 views

Rails Engines: engine views or partials as reusable widgets

Our team is starting to use a lot of engines, and we would like these to display "widgets" when the user logs in the main or host app. We already use the public activity gem to some extent. ...
0
votes
0answers
38 views

Merge two rails engine into one

I have two different engines in my rails main application. I want to merge those engines into one engine, but don't know whether it is possible or not. Can somebody help me out as to how shall I ...
0
votes
0answers
44 views

Rails Engine - don't generate stylesheet, helper generation

I don' need controller-specific helper classes or stylesheet in my rails app. so I usually add the following in config/application.rb #./config/application.rb config.generators.stylesheets = false ...
1
vote
1answer
155 views

How to manage migrations for a rails engine + dummy app

I just joined a project developing a rails engine, that also has a dummy app for testing. foo/ foo/spec/dummy/ There are identical migrations in foo/db/migrate/ foo/spec/dummy/db/migrate/ If I ...
1
vote
3answers
123 views

Building Rails 3 Engine Throwing Gem::Package::TooLongFileName Error

I'm trying to build my engine using gem build myengine but I keep getting the following error: ERROR: While executing gem ... (Gem::Package::TooLongFileName) Gem::Package::TooLongFileName I ...
0
votes
1answer
179 views

Rails 3.2 Engines - routes not working in test cases

I mounted in my app the RailsAdmin engine ( according to the instructions from the wiki ) using mount RailsAdmin::Engine => '/backend', :as => 'rails_admin' I had to extend one controller from ...
0
votes
1answer
39 views

Controller can't see def new/create for rails 3.2.8 engine

We are testing a customerx engine under spec/dummy. Index page of the engine customerx can be displayed without any error. Here is the link: <li><%= link_to 'Customers', ...
0
votes
1answer
112 views

Using Rails engine to share model without namespace

I am trying to separate the model of my application to be more reusable by using Rails engines. I have created a Common engine which has all my models for my application that I want to share between ...
0
votes
0answers
113 views

How to mount Refinery based site to subdirectory

I'm trying to deploy a Refinery based site to a subdirectory on a domain using Apache and Phusion Passenger. Somehow it almost works, but not quite. Does anybody have any experience with this and can ...
0
votes
2answers
223 views

rails memcached dalli Marshalling error for key

I have such action in my controller: def my @user = Ads::User.find current_user.id @postings = Rails.cache.fetch("@user.postings.includes(:category)") do @postings = ...
0
votes
1answer
92 views

route helpers not found after overriding engine view

whenever I override an engine's view, I get method missing on all the route helpers in the views and also in the helpers from the engine used in the view. How can I make the view to look for the ...
0
votes
0answers
34 views

Wrong specs by scaffolding at rails engines

Specs generated by scaffolding at rails engine fails. Way to reproduce: rails plugin new my_engine --skip-test-unit --full --mountable --dummy-path=spec/dummy folowed rspec setup from this blog ...
1
vote
0answers
55 views

Where to create session table in rails 3.2.8 app with engines?

In a rails 3.2.8 app, we create a rails mountable engine authentify for user authentication. Our question is where to create session table, in rails app (main app) or in engine authentify? If we ...
1
vote
1answer
247 views

Rails Engine with Mongoid

I'm creating standalone rails engine application which will be further added to main application, using mongoid. So, I started like this. rails plugin new some_engine --mountable --skip-active-record ...
2
votes
1answer
149 views

undefined local variable or method `main_app' on helper test

I got error on rspec running my helper test on Rails Main Application (with further plugins) 1) MenuHelper maintence menu Failure/Error: before { menu = build_menu_maintence() } NameError: ...
0
votes
0answers
77 views

How to pass the session variables from one rails 3.2.8 engine to another engine?

In our rails 3.2.8 app, there is an mountable engine authentify which handles the authentication of users and generates sessions variable for whole app. When we are integrating authentify with another ...
1
vote
2answers
270 views

How to use SASS, HAML, and CoffeeScript in Rails 3.2.x Engine?

Currently, I have a Rails 3.2.9 Engine which is using sass-rails. When I generate a controller with a couple actions, the assets are also generated (i.e., javascript and CSS). However, both the ...
0
votes
1answer
61 views

Rails engine asset available to app when `path` used, but not if downloaded from rubygems.org

I find this problem a little funky, and need more sets of eyes. I'm making a super simple gem that makes the backbone.eventbinder.js file available to the Rails app that requires this gem. The ...

1 2 3 4 5