Sha256: 36a40005bf6640ecee0e0cc6ee922989ab0a2c0b8f64d47abf2bbaa82e8af2a8

Contents?: true

Size: 523 Bytes

Versions: 7

Compression:

Stored size: 523 Bytes

Contents

# frozen_string_literal: true

require 'rails/generators'
require_relative 'base'

# This generator is used to create a staging environment
# => It generates a staging.rb file in the config/environments/ (uses the production environment as a base)
# => It adds a staging database to the bottom of your config/database.yml file (inherits from &default)
# https://api.rubyonrails.org/v5.2/classes/Rails/Generators/Base.html#method-c-base_root
module Kowl
  class StagingGenerator < Kowl::Generators::Base
    hide!
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kowl-0.0.7 lib/kowl/generators/staging_generator.rb
kowl-0.0.6 lib/kowl/generators/staging_generator.rb
kowl-0.0.5 lib/kowl/generators/staging_generator.rb
kowl-0.0.4 lib/kowl/generators/staging_generator.rb
kowl-0.0.3 lib/kowl/generators/staging_generator.rb
kowl-0.0.2 lib/kowl/generators/staging_generator.rb
kowl-0.0.1 lib/kowl/generators/staging_generator.rb