Sha256: 087d38b1097f8a5f9b0d716e8819c8b31991bce8054d1244fed61e85c36f5b11
Contents?: true
Size: 1.27 KB
Versions: 17
Compression:
Stored size: 1.27 KB
Contents
module Fastlane # Guides the new user through creating a new action module NewAction def self.run name = fetch_name generate_action(name) end 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: ') until name_valid?(name) puts 'Name invalid!' name = ask('Name of your action: ') end name end 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) UI.success "Created new action file '#{path}'. Edit it to implement your custom action." end def self.name_valid?(name) name == name.downcase && name.length > 0 && !name.include?('.') end private_class_method :name_valid? end end
Version data entries
17 entries across 17 versions & 1 rubygems