Sha256: 3b0146379da4052eb8484ec5aedaa2b56d711b053655a4f6c8b81fd8423612c5

Contents?: true

Size: 430 Bytes

Versions: 82

Compression:

Stored size: 430 Bytes

Contents

module EffectiveDeveloper
  module Generators
    class InstallGenerator < Rails::Generators::Base
      include Rails::Generators::Migration

      desc 'Creates an EffectiveDeveloper initializer in your application.'

      source_root File.expand_path(('../' * 4), __FILE__)

      def copy_initializer
        template 'config/effective_developer.rb', 'config/initializers/effective_developer.rb'
      end

    end
  end
end

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
effective_developer-0.0.3 lib/generators/effective_developer/install_generator.rb
effective_developer-0.0.2 lib/generators/effective_developer/install_generator.rb