Class: DaemonKit::Generators::RuoteGenerator
- Inherits:
-
Base
show all
- Defined in:
- lib/generators/daemon_kit/ruote/ruote_generator.rb
Instance Attribute Summary
#behavior
Attributes included from Thor::Base
#options
Instance Method Summary
collapse
Methods inherited from Base
desc
#action, #append_file, #apply, #chmod, #copy_file, #create_file, #destination_root, #destination_root=, #directory, #empty_directory, #find_in_source_paths, #get, #gsub_file, #in_root, included, #initialize, #inject_into_class, #inject_into_file, #inside, #prepend_file, #relative_to_original_destination_root, #remove_file, #run, #run_ruby_script, #source_paths, #template, #thor
Methods inherited from Thor::Group
class_options_help, desc, get_options_from_invocations, handle_argument_error, help, invocation_blocks, invocations, invoke, invoke_from_option, printable_tasks, remove_invocation, start
Methods included from Thor::Base
included, #initialize, register_klass_file, shell, shell=, subclass_files, subclasses
Instance Method Details
#create_configs ⇒ Object
10
11
12
|
# File 'lib/generators/daemon_kit/ruote/ruote_generator.rb', line 10
def create_configs
directory 'config'
end
|
#create_daemon ⇒ Object
18
19
20
|
# File 'lib/generators/daemon_kit/ruote/ruote_generator.rb', line 18
def create_daemon
directory 'libexec'
end
|
#create_lib ⇒ Object
14
15
16
|
# File 'lib/generators/daemon_kit/ruote/ruote_generator.rb', line 14
def create_lib
directory 'lib', nil, :force => true
end
|
#update_gemfile ⇒ Object
5
6
7
8
|
# File 'lib/generators/daemon_kit/ruote/ruote_generator.rb', line 5
def update_gemfile
append_file 'Gemfile', "gem 'amqp' # Only needed if running the AMQP participant/listener pair\n"
append_file 'Gemfile', "gem 'json' # Can be replaced with json_pure\n"
end
|