Sha256: 9bf29e02fdcc3ab60fac5a77e14c8e05af19cf844254fccd03178923808cd38a
Contents?: true
Size: 1.44 KB
Versions: 27
Compression:
Stored size: 1.44 KB
Contents
require 'securerandom' module Petergate module Generators class InstallGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path("../templates", __FILE__) class_option :orm desc "Sets up rails project for Petergate Authorizations" def self.next_migration_number(path) sleep 1 Time.now.utc.strftime("%Y%m%d%H%M%S") end def insert_into_user_model inject_into_file "app/models/user.rb", after: /^class\sUser < ActiveRecord::Base/ do <<-'RUBY' ################################################################################ ## PeterGate Roles ## The :user role is added by default and shouldn't be included in this list. petergate(roles: [:admin, :company_admin]) ################################################################################ RUBY end end # def insert_into_application_controller # inject_into_file "app/controllers/application_controller.rb", after: /^class\sApplicationController\s<\sActionController::Base/ do # <<-'RUBY' # access(all: [:index, :show]) # RUBY # end # end def create_migrations Dir["#{self.class.source_root}/migrations/*.rb"].sort.each do |filepath| name = File.basename(filepath) migration_template "migrations/#{name}", "db/migrate/#{name}" end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems