Sha256: af200a5d032f1491ea7fb760090c43d3683cb807c91fa8f747acb1597fefde1e
Contents?: true
Size: 615 Bytes
Versions: 36
Compression:
Stored size: 615 Bytes
Contents
require 'rails' module Neography class Railtie < Rails::Railtie # To add an initialization step from your Railtie to Rails boot process, you just need to create an initializer block: # See: http://api.rubyonrails.org/classes/Rails/Railtie.html initializer 'neography.configure' do # Provides a hook so people implementing the gem can do this in a railtie of their own: # initializer "my_thing.neography_initialization", before: 'neography.configure' do # require 'my_thing/neography' # end end rake_tasks do load 'neography/tasks.rb' end end end
Version data entries
36 entries across 36 versions & 4 rubygems