Class: Fastlane::Actions::IncrementVersionNumberAction

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

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, method_missing, other_action, return_value, sh, step_text

Class Method Details

.authorObject



120
121
122
# File 'lib/fastlane/actions/increment_version_number.rb', line 120

def self.author
  "serluca"
end

.available_optionsObject



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/fastlane/actions/increment_version_number.rb', line 89

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :bump_type,
                                 env_name: "FL_VERSION_NUMBER_BUMP_TYPE",
                                 description: "The type of this version bump. Available: patch, minor, major",
                                 default_value: "patch",
                                 verify_block: proc do |value|
                                   UI.user_error!("Available values are 'patch', 'minor' and 'major'") unless ['patch', 'minor', 'major'].include? value
                                 end),
    FastlaneCore::ConfigItem.new(key: :version_number,
                                 env_name: "FL_VERSION_NUMBER_VERSION_NUMBER",
                                 description: "Change to a specific version. This will replace the bump type value",
                                 optional: true
                                ),
    FastlaneCore::ConfigItem.new(key: :xcodeproj,
                                 env_name: "FL_VERSION_NUMBER_PROJECT",
                                 description: "optional, you must specify the path to your main Xcode project if it is not in the project root directory",
                                 verify_block: proc do |value|
                                   UI.user_error!("Please pass the path to the project, not the workspace") if value.end_with? ".xcworkspace"
                                   UI.user_error!("Could not find Xcode project") unless File.exist?(value)
                                 end,
                                 optional: true)
  ]
end

.descriptionObject



77
78
79
# File 'lib/fastlane/actions/increment_version_number.rb', line 77

def self.description
  "Increment the version number of your project"
end

.detailsObject



81
82
83
84
85
86
87
# File 'lib/fastlane/actions/increment_version_number.rb', line 81

def self.details
  [
    "This action will increment the version number. ",
    "You first have to set up your Xcode project, if you haven't done it already:",
    "https://developer.apple.com/library/ios/qa/qa1827/_index.html"
  ].join("\n")
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/fastlane/actions/increment_version_number.rb', line 10

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

.outputObject



114
115
116
117
118
# File 'lib/fastlane/actions/increment_version_number.rb', line 114

def self.output
  [
    ['VERSION_NUMBER', 'The new version number']
  ]
end

.run(params) ⇒ Object



14
15
16
17
18
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/fastlane/actions/increment_version_number.rb', line 14

def self.run(params)
  # More information about how to set up your project and how it works:
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html

  folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'

  command_prefix = [
    'cd',
    File.expand_path(folder).shellescape,
    '&&'
  ].join(' ')

  current_version = `#{command_prefix} agvtool what-marketing-version -terse1`.split("\n").last || ''

  if params[:version_number]
    UI.verbose("Your current version (#{current_version}) does not respect the format A.B.C") unless current_version =~ /\d.\d.\d/

    # Specific version
    next_version_number = params[:version_number]
  else
    if Helper.test?
      version_array = [1, 0, 0]
    else
      UI.user_error!("Your current version (#{current_version}) does not respect the format A.B.C") unless current_version =~ /\d+.\d+.\d+/
      version_array = current_version.split(".").map(&:to_i)
    end

    case params[:bump_type]
    when "patch"
      version_array[2] = version_array[2] + 1
      next_version_number = version_array.join(".")
    when "minor"
      version_array[1] = version_array[1] + 1
      version_array[2] = version_array[2] = 0
      next_version_number = version_array.join(".")
    when "major"
      version_array[0] = version_array[0] + 1
      version_array[1] = version_array[1] = 0
      version_array[1] = version_array[2] = 0
      next_version_number = version_array.join(".")
    when "specific_version"
      next_version_number = specific_version_number
    end
  end

  command = [
    command_prefix,
    "agvtool new-marketing-version #{next_version_number}"
  ].join(' ')

  if Helper.test?
    Actions.lane_context[SharedValues::VERSION_NUMBER] = command
  else
    Actions.sh command
    Actions.lane_context[SharedValues::VERSION_NUMBER] = next_version_number
  end

  return Actions.lane_context[SharedValues::VERSION_NUMBER]
rescue => ex
  UI.error('Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html')
  raise ex
end