Class: Fastlane::Actions::UpdateUrlSchemesAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/update_url_schemes.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, details, return_value, sh, step_text

Class Method Details

.authorsObject



54
55
56
# File 'lib/fastlane/actions/update_url_schemes.rb', line 54

def self.authors
  ['kmikael']
end

.available_optionsObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/fastlane/actions/update_url_schemes.rb', line 19

def self.available_options
  [
    FastlaneCore::ConfigItem.new(
      key: :path,
      env_name: 'FL_UPDATE_URL_SCHEMES_PATH',
      description: 'The Plist file\'s path',
      is_string: true,
      optional: false,
      verify_block: proc do |path|
        UI.user_error!("Could not find plist at path '#{path}'") unless File.exist?(path)
      end
    ),

    FastlaneCore::ConfigItem.new(
      key: :url_schemes,
      env_name: "FL_UPDATE_URL_SCHEMES_SCHEMES",
      description: 'The new URL schemes',
      is_string: false,
      optional: false,
      verify_block: proc do |url_schemes|
        string = "The URL schemes must be an array of strings, got '#{url_schemes}'.".red
        raise string unless url_schemes.kind_of?(Array)

        url_schemes.each do |url_scheme|
          raise string unless url_scheme.kind_of?(String)
        end
      end
    )
  ]
end

.descriptionObject



15
16
17
# File 'lib/fastlane/actions/update_url_schemes.rb', line 15

def self.description
  'Updates the URL schemes in the given Info.plist'
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/fastlane/actions/update_url_schemes.rb', line 58

def self.is_supported?(platform)
  [:ios, :mac].include? platform
end

.outputObject



50
51
52
# File 'lib/fastlane/actions/update_url_schemes.rb', line 50

def self.output
  []
end

.run(params) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/fastlane/actions/update_url_schemes.rb', line 6

def self.run(params)
  path = params[:path]
  url_schemes = params[:url_schemes]

  hash = Plist.parse_xml(path)
  hash['CFBundleURLTypes'].first['CFBundleURLSchemes'] = url_schemes
  File.write(path, hash.to_plist)
end