Class: Rage::CLINewAppGenerator
- Inherits:
-
Thor::Group
- Object
- Thor::Group
- Rage::CLINewAppGenerator
- Includes:
- Thor::Actions
- Defined in:
- lib/rage/cli.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.source_root ⇒ Object
265 266 267 |
# File 'lib/rage/cli.rb', line 265 def self.source_root File.("templates", __dir__) end |
Instance Method Details
#copy_files ⇒ Object
277 278 279 |
# File 'lib/rage/cli.rb', line 277 def copy_files inject_templates end |
#create_directory ⇒ Object
273 274 275 |
# File 'lib/rage/cli.rb', line 273 def create_directory empty_directory(path) end |
#install_database ⇒ Object
281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/rage/cli.rb', line 281 def install_database return unless @use_database @app_name = path.tr("-", "_").downcase append_to_file "#{path}/Gemfile", <<~RUBY gem "#{get_db_gem_name}" gem "activerecord" gem "standalone_migrations", require: false RUBY inject_templates("db-templates") inject_templates("db-templates/#{database}") end |
#setup ⇒ Object
269 270 271 |
# File 'lib/rage/cli.rb', line 269 def setup @use_database = !database.nil? end |