Module: Fastlane::NewAction
- Defined in:
- lib/fastlane/new_action.rb
Overview
Guides the new user through creating a new action
Class Method Summary collapse
Class Method Details
.fetch_name ⇒ Object
9 10 11 12 13 14 15 16 17 18 |
# File 'lib/fastlane/new_action.rb', line 9 def self.fetch_name puts "Must be lower case, and use a '_' between words. Do not use '.'".green puts "examples: 'testflight', 'upload_to_s3'".green name = ask('Name of your action: ') while !name_valid?(name) puts 'Name invalid!' name = ask('Name of your action: ') end name end |
.generate_action(name) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/fastlane/new_action.rb', line 20 def self.generate_action(name) template = File.read("#{Helper.gem_path('fastlane')}/lib/assets/custom_action_template.rb") template.gsub!('[[NAME]]', name) template.gsub!('[[NAME_UP]]', name.upcase) template.gsub!('[[NAME_CLASS]]', name.fastlane_class + 'Action') actions_path = File.join((FastlaneFolder.path || Dir.pwd), 'actions') FileUtils.mkdir_p(actions_path) unless File.directory?(actions_path) path = File.join(actions_path, "#{name}.rb") File.write(path, template) Helper.log.info "Created new action file '#{path}'. Edit it to implement your custom action.".green end |
.run ⇒ Object
4 5 6 7 |
# File 'lib/fastlane/new_action.rb', line 4 def self.run name = fetch_name generate_action(name) end |