Sha256: 60e8f4051497801290ffa23be47e74de33476cb455931808bf431d07d074688c

Contents?: true

Size: 359 Bytes

Versions: 3

Compression:

Stored size: 359 Bytes

Contents

module MobileWorkflowCli
  class AppBuilder < Rails::AppBuilder
    def readme
      template 'README.md.erb', 'README.md'
    end
    
    def gemfile
      super
      # Thoughtbot administrate for admin console
      gem "administrate" 
      
      # Dotenv for development / test
      gem 'dotenv-rails', groups: [:development, :test] 
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mobile_workflow_cli-0.1.2 lib/mobile_workflow_cli/app_builder.rb
mobile_workflow_cli-0.1.1 lib/mobile_workflow_cli/app_builder.rb
mobile_workflow_cli-0.1.0 lib/mobile_workflow_cli/app_builder.rb