Sha256: e67dd825fc191e6022efdd9d4b27b23199d33d5f684b8828a4155cb091b8ae8f

Contents?: true

Size: 351 Bytes

Versions: 5

Compression:

Stored size: 351 Bytes

Contents

require 'authenticate'
require 'rails'

module Authenticate
  class Engine < ::Rails::Engine

    initializer 'authenticate.filter' do |app|
      app.config.filter_parameters += [:password, :token]
    end

    config.generators do |g|
      g.test_framework :rspec
      g.fixture_replacement :factory_girl, dir: 'spec/factories'
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
authenticate-0.3.1 lib/authenticate/engine.rb
authenticate-0.3.0 lib/authenticate/engine.rb
authenticate-0.2.3 lib/authenticate/engine.rb
authenticate-0.2.2 lib/authenticate/engine.rb
authenticate-0.2.1 lib/authenticate/engine.rb