generators/tasks/tasks_generator.rb in howitzer-1.1.1 vs generators/tasks/tasks_generator.rb in howitzer-2.0.0

- old
+ new

@@ -1,16 +1,18 @@ require_relative '../base_generator' module Howitzer + # This class responsible for rake tasks generation class TasksGenerator < BaseGenerator def manifest - { files: [ source: 'common.rake', destination: 'tasks/common.rake' ] } + { files: [source: 'common.rake', destination: 'tasks/common.rake'] } end protected + def banner <<-EOF * Base rake task generation ... EOF end end -end \ No newline at end of file +end