Sha256: 716f58e987c502f83575e91dd513fba5a6e5949b415f10c7f60febf8e75b9568

Contents?: true

Size: 807 Bytes

Versions: 2

Compression:

Stored size: 807 Bytes

Contents

class EnjuLeaf::QuickInstallGenerator < Rails::Generators::Base
  source_root File.expand_path('../templates', __FILE__)

  def quick_install
    environment = ENV['RAILS_ENV'] || 'development'
    gsub_file 'config/schedule.rb', /^set :environment, :development$/,
      "set :environment, :#{environment}"
    rake("enju_seed_engine:install:migrations")
    rake("enju_library_engine:install:migrations")
    rake("enju_biblio_engine:install:migrations")
    rake("enju_manifestation_viewer_engine:install:migrations")
    rake("enju_subject_engine:install:migrations")
    if !ENV['ENJU_SKIP_CONFIG']
      generate("enju_seed:setup")
      generate("enju_library:setup")
      generate("enju_biblio:setup")
      generate("enju_circulation:setup")
      generate("enju_subject:setup")
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
enju_leaf-1.3.3.1 lib/generators/enju_leaf/quick_install/quick_install_generator.rb
enju_leaf-1.3.3 lib/generators/enju_leaf/quick_install/quick_install_generator.rb