Class: Hanami::Commands::New::Abstract
- Inherits:
-
Object
- Object
- Hanami::Commands::New::Abstract
- Includes:
- Generators::Generatable
- Defined in:
- lib/hanami/commands/new/abstract.rb
Overview
Constant Summary collapse
- DEFAULT_ARCHITECTURE =
'container'.freeze
- DEFAULT_APPLICATION_BASE_URL =
'/'.freeze
Instance Attribute Summary collapse
- #database_config ⇒ Object readonly
- #options ⇒ Object readonly
- #target_path ⇒ Object readonly
- #test_framework ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(options, name) ⇒ Abstract
constructor
A new instance of Abstract.
- #start ⇒ Object
Methods included from Generators::Generatable
#add_mapping, #destroy, #generator, #map_templates, #post_process_templates, #process_templates, #template_options, #template_source_path
Constructor Details
#initialize(options, name) ⇒ Abstract
Returns a new instance of Abstract.
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/hanami/commands/new/abstract.rb', line 20 def initialize(, name) @options = Hanami::Utils::Hash.new().symbolize! @name = name @options[:database] ||= Hanami::Generators::DatabaseConfig::DEFAULT_ENGINE assert_name! assert_architecture! @hanami_model_version = '~> 0.5' @database_config = Hanami::Generators::DatabaseConfig.new([:database], app_name) @test_framework = Hanami::Generators::TestFramework.new(hanamirc, @options[:test]) end |
Instance Attribute Details
#database_config ⇒ Object (readonly)
18 19 20 |
# File 'lib/hanami/commands/new/abstract.rb', line 18 def database_config @database_config end |
#options ⇒ Object (readonly)
18 19 20 |
# File 'lib/hanami/commands/new/abstract.rb', line 18 def @options end |
#target_path ⇒ Object (readonly)
18 19 20 |
# File 'lib/hanami/commands/new/abstract.rb', line 18 def target_path @target_path end |
#test_framework ⇒ Object (readonly)
18 19 20 |
# File 'lib/hanami/commands/new/abstract.rb', line 18 def test_framework @test_framework end |
Instance Method Details
#start ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'lib/hanami/commands/new/abstract.rb', line 34 def start FileUtils.mkdir_p(@name) Dir.chdir(@name) do @target_path = Pathname.pwd super end end |