Railtie is the core of the Rails framework and provides several hooks to extend Rails and/or modify the initialization process.

learn more… | top users | synonyms

0
votes
1answer
151 views

Cannot resolve gem dependencies - doorkeeper, sass-rails - on jruby using Rails 4

I have googled around a lot to find answers and cannot find one. How do I resolve this dependency issue. If I remove sass-rails (which isn't practical but just for testing issues) then the problem ...
1
vote
1answer
48 views

Why Rails::Application has many duplicate initializers which are defined in Rails::Engine?

As i was working throught the rails 3 initialization process, i found that all the initializers defined in Rails::Engine(there are 10) were added to Rails::Application instance more than once. This ...
0
votes
1answer
38 views

Determine which Rails version I'm using when using Railties

Stupid question: I'm using Railties version 3.2.3 and wish to check which version of Rails its running exactly (what with the recent number of security issues). I've looked into the gem's code but ...
0
votes
0answers
1k views

Could not find RubyGem railties (>= 0) (Gem::LoadError) with the RailsInstaller

In Ruby on Rails, I am trying to install it on my Windows machine following the step-by-step instructions indicated in http://railsinstaller.org/windows On step 7, it says we should type in this ...
0
votes
1answer
111 views

Heroku Push Error H10

I have been trying for the past couple of days to fix an error that keeps occuring once I have pushed my app to Heroku. The app works fine in development when booted up on Webrick but for some ...
0
votes
1answer
270 views

Railtie: How to access initializer and lib loading hooks?

I am developing a gem for my Rails application, which be loaded into it through Railtie. I'm basically inserting models into into, plus libraries and a few initializers, in the old Rails app style. My ...
1
vote
1answer
47 views

rais gem incompatiblity clearance & railties, what should I do?

I have rails 3.017, and clearance 1.0.0.rc2 and trying to install gem 'jquery-rails', '~> 2.1' Do I need an older version of jquery-rails? If so, how can I figure this out? thanks Joel Bundler ...
0
votes
0answers
64 views

railtie to_prepare doesn't reload on every request

I am developing a gem, I use the following code to add the gem to my Gemfile gem 'mygem', :path => '../mygem' and there is a model the application called user, I add more things in this model by ...
0
votes
1answer
844 views

Rails destroy controller doesn't work

Pretty much there in the title. I worked on a project with someone else, then cloned the git repo to my computer, added a new controller, and then thought better so ran: rails destroy controller ...
1
vote
0answers
208 views

Inject route from gem to rails 3 routes.rb using Railties (devise issue)

I would like to automatically inject a route from my gem to the host app using a railtie. So far I have something like this: module Fabes class FabesRailtie < ::Rails::Railtie ...
3
votes
1answer
374 views

Railtie Inititalizer not running in plugin

I recently switched from the gem version of resources_controller to a plugin as the gem version relied on git. Inside the vendor/plugins/plugin/lib/plugin.rb file, the Railtie is as follows: ...
9
votes
1answer
1k 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 ...
7
votes
1answer
413 views

Why Railtie initializers are not executed?

While crafting the Passenger-Monit plugin, I thought that it'll be most appropriate to use the initializer, i.e. module PassengerMonit class Railtie < Rails::Railtie initializer ...
0
votes
2answers
721 views

Simple Railtie Extension of Active Record

I'm creating a Rails 3.0.3 gem and can't get it to work: # attached.rb module Attached require 'attached/railtie' if defined?(Rails) def self.include(base) base.send :extend, ClassMethods ...
4
votes
2answers
1k views

Rails::Railtie: Trouble creating a Rails 3 gem

I could really use another set of eyes on this so I thought I would post it here. A while ago I wrote a basic ActiveRecord Extension for my own educational purposes. I've been reading about Railties ...