Sha256: 1e6d659a41f96c3c2dc61584d7a8678a95b5bac8fff22e13e5d30dced67d2f92

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 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)
      Helper.log.info "Created new action file '#{path}'. Edit it to implement your custom action.".green
    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

3 entries across 3 versions & 1 rubygems

Version Path
fastlane-1.54.0 lib/fastlane/new_action.rb
fastlane-1.53.0 lib/fastlane/new_action.rb
fastlane-1.52.0 lib/fastlane/new_action.rb