Sha256: c8786fe46d40aedd04f87b800d4e3efd15caddae76a96add49547034247e8ece

Contents?: true

Size: 337 Bytes

Versions: 3

Compression:

Stored size: 337 Bytes

Contents

# frozen_string_literal: true

module Loco
  class InstallGenerator < Rails::Generators::Base
    source_root File.expand_path('../templates', __FILE__)

    def install
      generate 'loco:initializer'
      generate 'loco:file_injector'
      generate 'loco:notification_center'
      rake 'loco:install:migrations'
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
loco-rails-3.0.3 lib/generators/loco/install/install_generator.rb
loco-rails-3.0.2 lib/generators/loco/install/install_generator.rb
loco-rails-3.0.1 lib/generators/loco/install/install_generator.rb