Sha256: 0009b2f0b7798f502fe3eda40c9265359f3b34e88f5fa12f91be81c81154887e
Contents?: true
Size: 646 Bytes
Versions: 11
Compression:
Stored size: 646 Bytes
Contents
module Invitation # Make invitation available to Rails apps on initialization. # # Requiring `invitation` (likely by having it in your `Gemfile`) will # automatically require the engine. # # Invitation provides: # * routes # * controllers # * views # # You can opt-out of Invitation's internal routes by using {Configuration#routes=}. You can # subclass controllers, and override the Invitation views by running `rails generate invitation:views`. class Engine < ::Rails::Engine config.generators do |g| g.test_framework :rspec g.fixture_replacement :factory_girl, dir: 'spec/factories' end end end
Version data entries
11 entries across 11 versions & 1 rubygems