Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
3answers
3k views

Rails 3.1: Engine vs. Mountable App

Can someone help me understand the differences between a Rails Engine and a Mountable app? In Rails 3.1, you can create either one with the "rails new plugin ___" command. rails plugin new forum ...
17
votes
2answers
2k views

How to test Rails 3 Engines with Cucumber & Rspec?

I apologize if this question is slightly subjective... I am trying to figure out the best way to test Rails 3 Engines with Cucumber & Rspec. In order to test the engine a rails 3 app is ...
13
votes
7answers
4k views

Ruby on Rails 3 - Reload lib directory for each request

I'm creating a new engine for a rails 3 application. As you can guess, this engine is in the lib directory of my application. However, i have some problems developing it. Indeed, I need to restart my ...
8
votes
1answer
586 views

Listing 'rake routes' for a mountable Rails 3.1 engine

I'm working on a mountable engine for use with Rails 3.1, and I want to list the engine's routes. I created the engine using: $ rails plugin new rails_blog_engine --mountable And edited the ...
7
votes
4answers
1k views

Migrations in Rails Engine?

I have multiple rails applications talking to the same backend and I'd like them to share some migrations. I setup a rails engine (with enginex), I can share anything (controllers, views, models,...) ...
6
votes
1answer
1k views

Testing Rails 3.1 mountable engine with Rspec

I started making a Rails 3.1 engine, and I'm having a hard time testing it using rspec. First of all, if I run rails g integration_test whatever it creates a regular integration test in ...
5
votes
1answer
166 views

Rails 3.1 - Developing with Mountable Engines

I am developing 2 apps for 2 separate clients, and a 3rd for myself. All 3 apps will have an address book, emailing, and user authentication. Finally, I want the apps to be created "modular" so that I ...
5
votes
2answers
983 views

Problem creating Rails 3 Engine

I'm working on creating my first Rails 3 engine and I'm currently getting the following error message is a Railtie/Engine and cannot be installed as plugin (RuntimeError) To give you a bit more ...
4
votes
4answers
565 views

Ruby on Rails 3.1 Blog Engines

I see a lot of people asking about Blog Engines, but most of the questions & answers are rather old. Or if they aren't old most of the projects are old. I'm wondering if anyone knows of any Blog ...
4
votes
1answer
225 views

Differences between railties and engines in Ruby On Rails 3

I read a few documents on these arguments, but I did not understand clearly what they are, what are the differences between them and if one of them fits my needs. I need to write a piece of ...
4
votes
2answers
416 views

How to override Rails app routes from an engine?

I have a Rails app that I am trying to integrate a Rails engine in to. The host app has some catch all routes: # magic urls match '/' => 'admin/rendering#show' match '*path/edit' => ...
4
votes
5answers
2k views

Extending controllers of a Rails 3 Engine in the main app

I am using a Rails engine as a gem in my app. The engine has PostsController with a number of methods and I would like to extend the controller logic in my main app, e.g. to add some methods. If I ...
4
votes
1answer
612 views

Plugin vs Engine in Rails 3, shipped as a gem

In the documentation for Rails::Plugin (for Rails 3), I'm reading the following: "... you actually cannot declare a Rails::Engine inside your Plugin, otherwise it would cause the same files to be ...
3
votes
2answers
344 views

rails 3.1.1 engines - with mountable engines, is it possible to access parent app assets, default layout?

This is more for experimentation - I am aware that I can do this with --full but I wanted the functionality of namespacing in the app to avoid conflicts The idea is to have a main app - which ...
3
votes
2answers
267 views

Engine routes in Application Controller

I have a before_filter hook in my main app's application controller that does something like: (It doesn't just put a link in the flash, there is a message, but it isn't relevant to the question, it ...
3
votes
2answers
214 views

Why do includes in Rails Engine initializers malfunction when cache_classes = false?

I have an Engine which is extending another Engine's classes in its initializers like so: module MyApp class Engine < ::Rails::Engine initializer 'extend Product' do ...
3
votes
1answer
707 views

Rails Engine - Gems dependencies, how to load them into the application?

I'm doing an engine here, it works alright in stand alone. When I transform it into a gem, and load it inside another application, I get a lot of undefined errors, coming from my engine gem's ...
3
votes
2answers
443 views

Making a custom plugin/gem/engine for Rails 3 app

I am following the guide http://edgeguides.rubyonrails.org/plugins.html and it seems to be slightly outdated. Could you have a look on it and tell me which sections should be done in a different way ...
3
votes
1answer
545 views

Override a Rails Engine controller action

i'm using a Rails engine, but i need to customize some controllers actions. I actually forked the engine, and implementing those customizations into my own fork, but i was wondering if there is an ...
2
votes
1answer
127 views

Spree as a mountable engine

So, we want to rearchitect a portion of our site as a Rails app. The original plan was to have a main "site" app, with a number of plugin apps (Rails 3.1 Engines) with compartmentalized functionality ...
2
votes
0answers
228 views

Named routes in mounted rails engine

I'm making a small rails engine which I mount like this: mount BasicApp::Engine => "/app" Using this answer I have verified that all the routes in the engine are as the should be: However - ...
2
votes
1answer
39 views

How do you get static assets in a Rails Engine to work in Rails 3.0 and Rails 3.1?

I've read previous StackOverflow answers to this question but they are all over the map. Is there a definitive answer anywhere on how you should bundle static assets (css and js files) with your Rails ...
2
votes
1answer
360 views

Rails 3: Serving static assets from different locations depending on theme

I'm creating a simple theme system for a rails 3 application. A theme consists of a folder placed in Rails.root/themes containing A .yml manifest file some liquid template files A static assets ...
2
votes
0answers
69 views

2 rails engines in 1 project, view problems

Currently i'm developing 2 Rails::Engines 1 blog (for fun) and 1 csv importer and mapper. I made them with enginex and jeweler into a gem. I installed them locally and i included either 1 of them in ...
2
votes
2answers
185 views

How should I go about using a rdbms and mongodb in a rails app?

I'm currently testing the waters with mongoid and have so far begun on an ecommerce store. Now of course mongoid doesn't have transactions so I'd like to ideally use mongoid for most of the app ...
2
votes
1answer
100 views

Plugin update strategies

I'm developing a plugin which is used in several applications. This plugin is a rails engine with own controllers, models and routes. The controllers, views and models are being generated via simple ...
2
votes
0answers
288 views

Routes problem with namespaces in a Rails Engine based plugin

I'm trying to create a dynamic interface. Where my model classes exist and my controllers are dynamically created when launching the application. Everything happens in my routes file where the ...
1
vote
2answers
92 views

Sinatra vs Rails for webservice

I'm looking write a webservice. A simple example of how a user will interact with this service is user-signup. A user can hit the service to create an account (if they're mobile). On the other hand, ...
1
vote
1answer
76 views

How to initialize custom ActiveModel Validators in Rails 3+ app from within a Rails Engine

I'm trying to load some custom Validators from a Rails Engine but my application keeps failing due to the validator not being recognized. What is the proper way & time to initialize the ...
1
vote
2answers
82 views

How do I access all routes, when an App and an included AppEngine gem define controllers with the same name?

I have an engine (developed by me / the company I work for) that we use on several different projects. I just converted it to work with rails 3.1 w/ assets pipeline and everything seems to be ...
1
vote
1answer
46 views

How do I share a DB & data model between two Rails 3 apps?

I'm working on a project which involves aggregating data from a variety of sources so that users can search and mine it from a single front-end interface. The project breaks pretty cleanly into two ...
1
vote
2answers
34 views

Rails 3.1 Engines: How to call a script in /scripts

I'm refactoring a Rails app into an engine. The app relies on a python script in /script which I want to include with the engine. The original app code is: system("python ...
1
vote
2answers
112 views

How to extend Rails Engine's controllers properly?

I am developing Rails plugin (it is 3.1 Engine) called Carrier (https://github.com/stanislaw/carrier). In one of my rails app I want to extend Carrier's controller with some new methods - fx. add new ...
1
vote
2answers
73 views

Why engines are useful?

I am using Ruby on Rails 3.1 and I would like to know the followings: Why engines are useful? What would\could an engine serve? Is it a common practice to use engines?
1
vote
0answers
116 views

app does not load engine's assets via sprockets

I am trying to rewrite an app using rails 3.1 making use of engines. Somehow the test dummy app does not pick up my assets and I don't know what would be causing this. i.e. stylesheets from the engine ...
1
vote
1answer
71 views

How do I use railties to install files other than migrations (for e.g. config files)

I'm using Rails 3.1 and I am able to use railties to install migrations (by doing rake railties:install:migrations FROM=plugin_name). However, I have a couple of config files (.yml, etc.) that I need ...
1
vote
1answer
305 views

Rails 3.1 Engines Modules

When creating a mountable Rails 3.1 engine using rails plugin new my_engine --mountable it creates the engine at MyEngine::Engine < Rails::Engine Is there a way to generate it like the ...
1
vote
2answers
281 views

Guard doesn't see file updates

I'm developing a custom engine using this setup. I've created the engine with rails plugin new MyEngine --full Then I've added rspec-rails and guard-rspec as development dependencies with ...
1
vote
1answer
221 views

How to develop a Rails3 engine against a real app, using RSpec?

A lot has been written about engine development, and using a dummy app for testing. In our case we're developing an engine that is not a stand-alone entity, but has dependencies on a real Rails 3 ...
1
vote
1answer
75 views

How to change search order for render a partial in plugin/engine in rails3?

I'm writing a modular project in Rails3, and I've this issue. I've my main project, and I want to implement part of it with differentes customizations, so I'm using Engine, so I've: - app - views ...
1
vote
1answer
184 views

How to modify a Rails engine to require my library?

I have a Rails engine (someone else's gem) that I am trying to modify by adding another gem as a dependency. I can't seem to figure out how to get the engine to require the library. I've tried all ...
1
vote
1answer
376 views

Rails 3 Engine Problem with Routes

I have an engine, with this routes file: Rails.application.routes.draw do resources :comments, :controller => 'opinio/comments' end When I run the rake routes task, I get the correct output ...
1
vote
1answer
92 views

Rails engine not caching

In development I am trying to gather all models within my app by including a method within ActiveRecord::Base classes so they can configure the models and it will give me a hook to add that model to a ...
1
vote
0answers
181 views

Reopening Rails 3 engine classes from parent app

As it stands now, you can't reopen Engine classes contained within the engine's /app directory by simply adding the same class in the parent app's /app dir. For example: ...
1
vote
1answer
187 views

Subclassing ActiveRecord with permalink_fu in a rails engine

This question is related to extending class methods in Ruby, perhaps more specifically in the way that permalink_fu does so. It appears that has_permalink on a model will not be available in a ...
1
vote
2answers
610 views

Rails Engine: Extend model with application class

I Have an engine in vendor/plugins. My problem is, that i seemingly can“t extend the engine-model with a model in the base application. My folder structure: APPNAME -app -models -item.rb ...
1
vote
1answer
219 views

Do I need to require original file when overriding controller from Rails Engine?

I'm trying to override an action in a controller defined by a Rails Engine. It seems like I need to require the original file before reopening the class, like so: require File.join(RAILS_ROOT, ...
0
votes
0answers
52 views

Rails 3.1 mountable engine gem dependencies

I'm woking on an api for my app. The api is a mountable engine. My problem is that if gems are not specified in parent apps gemfile, they are not loaded in api engine. My current set-up: ...
0
votes
1answer
21 views

rails 3.1 mountable engines HTTP 404 Error on ajax post call

I am building my first Rails 3.1 engines plugin in which i have controller called initiatives_controller and have a action know as upload whenever i try to make a call to upload action via jquery ajax ...
0
votes
0answers
24 views

Rails 3.1: Better way to expose an engine's helper within the client app

I have found a few article addressing the issue of helpers within an engine not being accessible to the consuming (parent) application. To make sure we are all on the same page, let's say we have ...

1 2