Sha256: e1914a9cf6fcf73c2f36729905518d593827445282dc12830e655488c7e004d3
Contents?: true
Size: 434 Bytes
Versions: 15
Compression:
Stored size: 434 Bytes
Contents
require 'rolify' require 'pundit' module G5Authenticatable class Engine < ::Rails::Engine isolate_namespace G5Authenticatable config.generators do |g| g.orm :active_record g.test_framework :rspec g.fixture_replacement :factory_girl, dir: 'spec/factories' end initializer "g5_authenticatable.filter_access_token" do |app| app.config.filter_parameters += [ :access_token ] end end end
Version data entries
15 entries across 15 versions & 1 rubygems