fastlane 1.57.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6915ebe511946271b82ca544dc561dcebf771aa0
4
- data.tar.gz: ae7fd9d61785da58b7d4386c7c0bb53c801918ec
3
+ metadata.gz: 83bbac577f14b2584ea4c7ee7c6fa75afa411f77
4
+ data.tar.gz: 3d902321eda49a45afbce3d1a11921512338bed2
5
5
  SHA512:
6
- metadata.gz: 87efec434c9b094ed323fa09f391796f0a4066dbad0b774df1a2b22537e294a84cb01babcbee4fb86e73fb183ef1505727143c18b09d84a72b4ea0bf49817280
7
- data.tar.gz: 79778563981d7b502ac7769bba74f682cd5a5fb855256e35c0ac182ba1b573055bf595455981fee4d9f02a201fda9fba49922fedcbad51ed9ffac0a1067567aa
6
+ metadata.gz: fd636953f59ac12bba13d1cce3675a492bc380019b540c09b59b376a8f20872399415d15fc4e1717787d2ab81397ba49644c09c143b170611f2e899d3ac1def2
7
+ data.tar.gz: 9e9b449b5e3b1c69672dd419681cb8f6574cb4e1831150eec81fe1961cb226cff628d94bd013aaa8541d7a78c51dce7daac4f73c86cbc956fd9399d15ac4388d
@@ -11,7 +11,7 @@ module Fastlane
11
11
  shield: params[:shield],
12
12
  alpha: params[:alpha]
13
13
  }
14
- Badge::Runner.new.run('.', options)
14
+ Badge::Runner.new.run(params[:path], options)
15
15
  end
16
16
 
17
17
  #####################################################
@@ -67,6 +67,15 @@ module Fastlane
67
67
  is_string: false,
68
68
  verify_block: proc do |value|
69
69
  raise "alpha is only a flag and should always be true".red unless value == true
70
+ end),
71
+ FastlaneCore::ConfigItem.new(key: :path,
72
+ env_name: "FL_BADGE_PATH",
73
+ description: "Sets the root path to look for AppIcons",
74
+ optional: true,
75
+ is_string: true,
76
+ default_value: '.',
77
+ verify_block: proc do |value|
78
+ raise "path needs to be a valid directory".red if Dir[value].empty?
70
79
  end)
71
80
  ]
72
81
  end
@@ -6,12 +6,16 @@ module Fastlane
6
6
 
7
7
  class GetGithubReleaseAction < Action
8
8
  def self.run(params)
9
- Helper.log.info "Getting release on GitHub (#{params[:url]}: #{params[:version]})"
9
+ Helper.log.info "Getting release on GitHub (#{params[:server_url]}/#{params[:url]}: #{params[:version]})"
10
10
  require 'excon'
11
11
  require 'base64'
12
+
13
+ server_url = params[:server_url]
14
+ server_url = server_url[0..-2] if server_url.end_with? '/'
15
+
12
16
  headers = { 'User-Agent' => 'fastlane-get_github_release' }
13
17
  headers['Authorization'] = "Basic #{Base64.strict_encode64(params[:api_token])}" if params[:api_token]
14
- response = Excon.get("https://api.github.com/repos/#{params[:url]}/releases", headers: headers)
18
+ response = Excon.get("#{server_url}/repos/#{params[:url]}/releases", headers: headers)
15
19
 
16
20
  case response[:status]
17
21
  when 404
@@ -109,6 +113,14 @@ module Fastlane
109
113
  raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red if value.include? "github.com"
110
114
  raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red if value.split('/').count != 2
111
115
  end),
116
+ FastlaneCore::ConfigItem.new(key: :server_url,
117
+ env_name: "FL_GITHUB_RELEASE_SERVER_URL",
118
+ description: "The server url. e.g. 'https://your.github.server/api/v3' (Default: 'https://api.github.com')",
119
+ default_value: "https://api.github.com",
120
+ optional: true,
121
+ verify_block: proc do |value|
122
+ raise "Please include the protocol in the server url, e.g. https://your.github.server".red unless value.include? "//"
123
+ end),
112
124
  FastlaneCore::ConfigItem.new(key: :version,
113
125
  env_name: "FL_GET_GITHUB_RELEASE_VERSION",
114
126
  description: "The version tag of the release to check"),
@@ -120,7 +132,7 @@ module Fastlane
120
132
  end
121
133
 
122
134
  def self.authors
123
- ["KrauseFx", "czechboy0"]
135
+ ["KrauseFx", "czechboy0", "jaleksynas"]
124
136
  end
125
137
 
126
138
  def self.is_supported?(platform)
@@ -5,7 +5,7 @@ module Fastlane
5
5
  if params[:path].kind_of?(String)
6
6
  paths = "'#{params[:path]}'"
7
7
  else
8
- paths = params[:path].join(" ")
8
+ paths = params[:path].map {|path| "'#{path}'" }.join(" ")
9
9
  end
10
10
 
11
11
  result = Actions.sh("git commit -m '#{params[:message]}' #{paths}")
@@ -73,7 +73,7 @@ module Fastlane
73
73
 
74
74
  def self.output
75
75
  [
76
- ['APK_OUTPUT_PATH', 'The path to the newly generated apk file']
76
+ ['GRADLE_APK_OUTPUT_PATH', 'The path to the newly generated apk file']
77
77
  ]
78
78
  end
79
79
 
@@ -24,7 +24,7 @@ module Fastlane
24
24
  from = options[:from]
25
25
 
26
26
  message = options[:message]
27
- if message_format == "html"
27
+ if (message_format == "html") && (options[:include_html_header] == true)
28
28
  message = "<table><tr><td><img src='https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png' width='50' height='50'></td><td>#{message[0..9999]}</td></tr></table>"
29
29
  end
30
30
 
@@ -152,6 +152,12 @@ module Fastlane
152
152
  raise 'Unrecognized message_format.'.red
153
153
  end
154
154
  end),
155
+ FastlaneCore::ConfigItem.new(key: :include_html_header,
156
+ env_name: "FL_HIPCHAT_INCLUDE_HTML_HEADER",
157
+ description: "Should html formatted messages include a preformatted header? (true/false)",
158
+ default_value: true,
159
+ optional: true,
160
+ is_string: false),
155
161
  FastlaneCore::ConfigItem.new(key: :from,
156
162
  env_name: "FL_HIPCHAT_FROM",
157
163
  description: "Name the message will appear be sent from",
@@ -0,0 +1,130 @@
1
+ module Fastlane
2
+ module Actions
3
+ module SharedValues
4
+ ONE_SIGNAL_APP_ID = :ONE_SIGNAL_APP_ID
5
+ ONE_SIGNAL_APP_AUTH_KEY = :ONE_SIGNAL_APP_AUTH_KEY
6
+ end
7
+
8
+ class OnesignalAction < Action
9
+ def self.run(params)
10
+ require 'net/http'
11
+ require 'uri'
12
+ require 'base64'
13
+
14
+ Helper.log.info "Parameter App name: #{params[:app_name]}"
15
+ auth_token = params[:auth_token]
16
+ app_name = params[:app_name]
17
+ apns_p12_password = params[:apns_p12_password]
18
+ android_token = params[:android_token]
19
+
20
+ payload = {}
21
+ payload['name'] = app_name
22
+
23
+ unless params[:apns_p12].nil?
24
+ data = File.read(params[:apns_p12])
25
+ apns_p12 = Base64.encode64(data)
26
+ payload["apns_env"] = [:apns_env]
27
+ payload["apns_p12"] = apns_p12
28
+ # we need to have something for the p12 password, even if it's an empty string
29
+ payload["apns_p12_password"] = apns_p12_password || ""
30
+ end
31
+
32
+ payload["gcm_key"] = android_token unless android_token.nil?
33
+
34
+ # here's the actual lifting - POST to OneSignal
35
+
36
+ json_headers = { 'Content-Type' => 'application/json', 'Authorization' => "Basic #{auth_token}" }
37
+ uri = URI.parse('https://onesignal.com/api/v1/apps')
38
+ http = Net::HTTP.new(uri.host, uri.port)
39
+ http.use_ssl = true
40
+ response = http.post(uri.path, payload.to_json, json_headers)
41
+ response_body = JSON.parse(response.body)
42
+
43
+ Actions.lane_context[SharedValues::ONE_SIGNAL_APP_ID] = response_body["id"]
44
+ Actions.lane_context[SharedValues::ONE_SIGNAL_APP_AUTH_KEY] = response_body["basic_auth_key"]
45
+
46
+ check_response_code(response)
47
+ end
48
+
49
+ def self.check_response_code(response)
50
+ case response.code.to_i
51
+ when 200, 204
52
+ puts "Succesfully created new OneSignal app".green
53
+ else
54
+ raise "Unexpected #{response.code} with response: #{response.body}".red
55
+ end
56
+ end
57
+
58
+ def self.description
59
+ "Create a new OneSignal application"
60
+ end
61
+
62
+ def self.details
63
+ "You can use this action to automatically create a OneSignal application. You can also upload a .p12 with password, a GCM key, or both"
64
+ end
65
+
66
+ def self.available_options
67
+ [
68
+ FastlaneCore::ConfigItem.new(key: :auth_token,
69
+ env_name: "ONE_SIGNAL_AUTH_KEY",
70
+ description: "OneSignal Authorization Key",
71
+ verify_block: proc do |value|
72
+ unless value.to_s.length > 0
73
+ Helper.log.fatal "Please add 'ENV[\"ONE_SIGNAL_AUTH_KEY\"] = \"your token\"' to your Fastfile's `before_all` section.".red
74
+ raise 'No ONE_SIGNAL_AUTH_KEY given.'.red
75
+ end
76
+ end),
77
+
78
+ FastlaneCore::ConfigItem.new(key: :app_name,
79
+ env_name: "ONE_SIGNAL_APP_NAME",
80
+ description: "OneSignal App Name",
81
+ verify_block: proc do |value|
82
+ unless value.to_s.length > 0
83
+ Helper.log.fatal "Please add 'ENV[\"ONE_SIGNAL_APP_NAME\"] = \"Your app name\"' to your Fastfile's `before_all` section.".red
84
+ raise 'No ONE_SIGNAL_APP_NAME given.'.red
85
+ end
86
+ end),
87
+
88
+ FastlaneCore::ConfigItem.new(key: :android_token,
89
+ env_name: "ANDROID_TOKEN",
90
+ description: "ANDROID GCM KEY",
91
+ optional: true),
92
+
93
+ FastlaneCore::ConfigItem.new(key: :apns_p12,
94
+ env_name: "APNS_P12",
95
+ description: "APNS P12 File (in .p12 format)",
96
+ optional: true),
97
+
98
+ FastlaneCore::ConfigItem.new(key: :apns_p12_password,
99
+ env_name: "APNS_P12_PASSWORD",
100
+ description: "APNS P12 password",
101
+ optional: true),
102
+
103
+ FastlaneCore::ConfigItem.new(key: :apns_env,
104
+ env_name: "APNS_ENV",
105
+ description: "APNS environment",
106
+ optional: true,
107
+ default_value: 'production')
108
+ ]
109
+ end
110
+
111
+ def self.output
112
+ [
113
+ ['ONE_SIGNAL_APP_ID', 'The OneSignal app ID of the newly created app'],
114
+ ['ONE_SIGNAL_APP_AUTH_KEY', 'The auth token for the newly created OneSignal app']
115
+ ]
116
+ end
117
+
118
+ def self.return_value
119
+ end
120
+
121
+ def self.authors
122
+ ["timothybarraclough", "smartshowltd"]
123
+ end
124
+
125
+ def self.is_supported?(platform)
126
+ platform == :ios
127
+ end
128
+ end
129
+ end
130
+ end
@@ -110,10 +110,11 @@ module Fastlane
110
110
  # Gets info used for the plist
111
111
  info = FastlaneCore::IpaFileAnalyser.fetch_info_plist_file(ipa_file)
112
112
 
113
+ build_num = info['CFBundleVersion']
113
114
  bundle_id = info['CFBundleIdentifier']
114
115
  bundle_version = info['CFBundleShortVersionString']
115
116
  title = info['CFBundleName']
116
- full_version = "#{bundle_version}.#{info['CFBundleVersion']}"
117
+ full_version = "#{bundle_version}.#{build_num}"
117
118
 
118
119
  # Creating plist and html names
119
120
  plist_file_name = "#{url_part}#{title.delete(' ')}.plist"
@@ -134,6 +135,7 @@ module Fastlane
134
135
  end
135
136
  plist_render = eth.render(plist_template, {
136
137
  url: ipa_url,
138
+ build_num: build_num,
137
139
  bundle_id: bundle_id,
138
140
  bundle_version: bundle_version,
139
141
  title: title
@@ -147,6 +149,7 @@ module Fastlane
147
149
  end
148
150
  html_render = eth.render(html_template, {
149
151
  url: plist_url,
152
+ build_num: build_num,
150
153
  bundle_id: bundle_id,
151
154
  bundle_version: bundle_version,
152
155
  title: title
@@ -160,6 +163,8 @@ module Fastlane
160
163
  end
161
164
  version_render = eth.render(version_template, {
162
165
  url: plist_url,
166
+ build_num: build_num,
167
+ bundle_version: bundle_version,
163
168
  full_version: full_version
164
169
  })
165
170
 
@@ -26,9 +26,11 @@ module Fastlane
26
26
 
27
27
  repo_name = params[:repository_name]
28
28
  api_token = params[:api_token]
29
+ server_url = params[:server_url]
30
+ server_url = server_url[0..-2] if server_url.end_with? '/'
29
31
 
30
32
  # create the release
31
- response = call_releases_endpoint("post", repo_name, "/releases", api_token, body)
33
+ response = call_releases_endpoint("post", server_url, repo_name, "/releases", api_token, body)
32
34
 
33
35
  case response[:status]
34
36
  when 201
@@ -47,7 +49,7 @@ module Fastlane
47
49
  self.upload_assets(assets, body['upload_url'], api_token)
48
50
 
49
51
  # fetch the release again, so that it contains the uploaded assets
50
- get_response = self.call_releases_endpoint("get", repo_name, "/releases/#{release_id}", api_token, nil)
52
+ get_response = self.call_releases_endpoint("get", server_url, repo_name, "/releases/#{release_id}", api_token, nil)
51
53
  if get_response[:status] != 200
52
54
  Helper.log.error "GitHub responded with #{response[:status]}:#{response[:body]}".red
53
55
  raise "Failed to fetch the newly created release, but it *has been created* successfully.".red
@@ -139,8 +141,8 @@ module Fastlane
139
141
  return response
140
142
  end
141
143
 
142
- def self.call_releases_endpoint(method, repo, endpoint, api_token, body)
143
- url = "https://api.github.com/repos/#{repo}#{endpoint}"
144
+ def self.call_releases_endpoint(method, server, repo, endpoint, api_token, body)
145
+ url = "#{server}/repos/#{repo}#{endpoint}"
144
146
  self.call_endpoint(url, method, self.headers(api_token), body)
145
147
  end
146
148
 
@@ -176,6 +178,14 @@ module Fastlane
176
178
  raise "Please only pass the path, e.g. 'fastlane/fastlane'".red if value.include? "github.com"
177
179
  raise "Please only pass the path, e.g. 'fastlane/fastlane'".red if value.split('/').count != 2
178
180
  end),
181
+ FastlaneCore::ConfigItem.new(key: :server_url,
182
+ env_name: "FL_GITHUB_RELEASE_SERVER_URL",
183
+ description: "The server url. e.g. 'https://your.internal.github.host/api/v3' (Default: 'https://api.github.com')",
184
+ default_value: "https://api.github.com",
185
+ optional: true,
186
+ verify_block: proc do |value|
187
+ raise "Please include the protocol in the server url, e.g. https://your.github.server/api/v3".red unless value.include? "//"
188
+ end),
179
189
  FastlaneCore::ConfigItem.new(key: :api_token,
180
190
  env_name: "FL_GITHUB_RELEASE_API_TOKEN",
181
191
  description: "Personal API Token for GitHub - generate one at https://github.com/settings/tokens",
@@ -5,8 +5,28 @@ module Fastlane
5
5
  end
6
6
 
7
7
  class SlatherAction < Action
8
- # rubocop:disable Metrics/CyclomaticComplexity
9
- # rubocop:disable Metrics/PerceivedComplexity
8
+
9
+ ARGS_MAP = {
10
+ build_directory: "--build-directory",
11
+ input_format: "--input-format",
12
+ scheme: "--scheme",
13
+ buildkite: "--buildkite",
14
+ jenkins: "--jenkins",
15
+ travis: "--travis",
16
+ circleci: "--circleci",
17
+ coveralls: "--coveralls",
18
+ simple_output: "--simple-output",
19
+ gutter_json: "--gutter-json",
20
+ cobertura_xml: "--cobertura-xml",
21
+ html: "--html",
22
+ show: "--show",
23
+ source_directory: "--source-directory",
24
+ output_directory: "--output-directory",
25
+ binary_basename: "--binary-basename",
26
+ binary_file: "--binary-file",
27
+ ignore: "--ignore"
28
+ }.freeze
29
+
10
30
  def self.run(params)
11
31
  # This will fail if using Bundler. Skip the check rather than needing to
12
32
  # require bundler
@@ -14,33 +34,35 @@ module Fastlane
14
34
  Actions.verify_gem!('slather')
15
35
  end
16
36
 
17
- command = ""
18
- command += "bundle exec " if params[:use_bundle_exec]
19
- command += "slather coverage "
20
- command += " --build-directory #{params[:build_directory].shellescape}" if params[:build_directory]
21
- command += " --input-format #{params[:input_format]}" if params[:input_format]
22
- command += " --scheme #{params[:scheme].shellescape}" if params[:scheme]
23
- command += " --buildkite" if params[:buildkite]
24
- command += " --jenkins" if params[:jenkins]
25
- command += " --travis" if params[:travis]
26
- command += " --circleci" if params[:circleci]
27
- command += " --coveralls" if params[:coveralls]
28
- command += " --simple-output" if params[:simple_output]
29
- command += " --gutter-json" if params[:gutter_json]
30
- command += " --cobertura-xml" if params[:cobertura_xml]
31
- command += " --html" if params[:html]
32
- command += " --show" if params[:show]
33
- command += " --source-directory #{params[:source_directory].shellescape}" if params[:source_directory]
34
- command += " --output-directory #{params[:output_directory].shellescape}" if params[:output_directory]
35
- if params[:ignore].kind_of?(String)
36
- command += " --ignore #{params[:ignore].shellescape}"
37
- elsif params[:ignore].kind_of?(Array)
38
- command += " #{params[:ignore].map { |path| "--ignore #{path.shellescape}" }.join(' ')}"
39
- end
40
- command += " #{params[:proj].shellescape}"
37
+ command = build_command(params)
41
38
  sh command
42
39
  end
43
40
 
41
+ def self.build_command(params)
42
+ command = []
43
+ command.push("bundle exec") if params[:use_bundle_exec]
44
+ command << "slather coverage"
45
+
46
+ ARGS_MAP.each do |key, cli_param|
47
+ cli_value = params[key]
48
+ if cli_value
49
+ if cli_value.kind_of?(TrueClass)
50
+ command << cli_param
51
+ elsif cli_value.kind_of?(String)
52
+ command << cli_param
53
+ command << cli_value.shellescape
54
+ elsif cli_value.kind_of?(Array)
55
+ command << cli_value.map { |path| "#{cli_param} #{path.shellescape}" }
56
+ end
57
+ else
58
+ next
59
+ end
60
+ end
61
+
62
+ command << params[:proj].shellescape
63
+ command.join(" ")
64
+ end
65
+
44
66
  #####################################################
45
67
  # @!group Documentation
46
68
  #####################################################
@@ -146,6 +168,14 @@ Slather is available at https://github.com/venmo/slather
146
168
  env_name: "FL_SLATHER_USE_BUNDLE_EXEC",
147
169
  description: "Use bundle exec to execute slather. Make sure it is in the Gemfile",
148
170
  is_string: false,
171
+ default_value: false),
172
+ FastlaneCore::ConfigItem.new(key: :binary_basename,
173
+ env_name: "FL_SLATHER_BINARY_BASENAME",
174
+ description: "Basename of the binary file, this should match the name of your bundle excluding its extension (i.e. YourApp [for YourApp.app bundle])",
175
+ default_value: false),
176
+ FastlaneCore::ConfigItem.new(key: :binary_file,
177
+ env_name: "FL_SLATHER_BINARY_FILE",
178
+ description: "Binary file name to be used for code coverage",
149
179
  default_value: false)
150
180
  ]
151
181
  end
@@ -23,10 +23,8 @@ module Fastlane
23
23
  configs = project.objects.select { |obj| obj.isa == 'XCBuildConfiguration' && !obj.build_settings[identifier_key].nil? }
24
24
  raise "Info plist uses $(#{identifier_key}), but xcodeproj does not".red unless configs.count > 0
25
25
 
26
- unless Helper.test?
27
- configs = configs.select { |obj| obj.build_settings[info_plist_key] == params[:plist_path] }
28
- raise "Xcodeproj doesn't have configuration with info plist #{params[:plist_path]}.".red unless configs.count > 0
29
- end
26
+ configs = configs.select { |obj| obj.build_settings[info_plist_key] == params[:plist_path] }
27
+ raise "Xcodeproj doesn't have configuration with info plist #{params[:plist_path]}.".red unless configs.count > 0
30
28
 
31
29
  # For each of the build configurations, set app identifier
32
30
  configs.each do |c|
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.57.0'
2
+ VERSION = '1.58.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-02 00:00:00.000000000 Z
11
+ date: 2016-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: krausefx-shenzhen
@@ -134,7 +134,7 @@ dependencies:
134
134
  requirements:
135
135
  - - ">="
136
136
  - !ruby/object:Gem::Version
137
- version: 0.36.1
137
+ version: 0.36.2
138
138
  - - "<"
139
139
  - !ruby/object:Gem::Version
140
140
  version: 1.0.0
@@ -144,7 +144,7 @@ dependencies:
144
144
  requirements:
145
145
  - - ">="
146
146
  - !ruby/object:Gem::Version
147
- version: 0.36.1
147
+ version: 0.36.2
148
148
  - - "<"
149
149
  - !ruby/object:Gem::Version
150
150
  version: 1.0.0
@@ -174,7 +174,7 @@ dependencies:
174
174
  requirements:
175
175
  - - ">="
176
176
  - !ruby/object:Gem::Version
177
- version: 0.19.3
177
+ version: 0.19.4
178
178
  - - "<"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 1.0.0
@@ -184,7 +184,7 @@ dependencies:
184
184
  requirements:
185
185
  - - ">="
186
186
  - !ruby/object:Gem::Version
187
- version: 0.19.3
187
+ version: 0.19.4
188
188
  - - "<"
189
189
  - !ruby/object:Gem::Version
190
190
  version: 1.0.0
@@ -194,7 +194,7 @@ dependencies:
194
194
  requirements:
195
195
  - - ">="
196
196
  - !ruby/object:Gem::Version
197
- version: 1.9.0
197
+ version: 1.10.0
198
198
  - - "<"
199
199
  - !ruby/object:Gem::Version
200
200
  version: 2.0.0
@@ -204,7 +204,7 @@ dependencies:
204
204
  requirements:
205
205
  - - ">="
206
206
  - !ruby/object:Gem::Version
207
- version: 1.9.0
207
+ version: 1.10.0
208
208
  - - "<"
209
209
  - !ruby/object:Gem::Version
210
210
  version: 2.0.0
@@ -214,7 +214,7 @@ dependencies:
214
214
  requirements:
215
215
  - - ">="
216
216
  - !ruby/object:Gem::Version
217
- version: 1.6.0
217
+ version: 1.7.0
218
218
  - - "<"
219
219
  - !ruby/object:Gem::Version
220
220
  version: 2.0.0
@@ -224,7 +224,7 @@ dependencies:
224
224
  requirements:
225
225
  - - ">="
226
226
  - !ruby/object:Gem::Version
227
- version: 1.6.0
227
+ version: 1.7.0
228
228
  - - "<"
229
229
  - !ruby/object:Gem::Version
230
230
  version: 2.0.0
@@ -254,7 +254,7 @@ dependencies:
254
254
  requirements:
255
255
  - - ">="
256
256
  - !ruby/object:Gem::Version
257
- version: 1.1.1
257
+ version: 1.2.0
258
258
  - - "<"
259
259
  - !ruby/object:Gem::Version
260
260
  version: 2.0.0
@@ -264,7 +264,7 @@ dependencies:
264
264
  requirements:
265
265
  - - ">="
266
266
  - !ruby/object:Gem::Version
267
- version: 1.1.1
267
+ version: 1.2.0
268
268
  - - "<"
269
269
  - !ruby/object:Gem::Version
270
270
  version: 2.0.0
@@ -274,7 +274,7 @@ dependencies:
274
274
  requirements:
275
275
  - - ">="
276
276
  - !ruby/object:Gem::Version
277
- version: 1.2.8
277
+ version: 1.3.0
278
278
  - - "<"
279
279
  - !ruby/object:Gem::Version
280
280
  version: 2.0.0
@@ -284,7 +284,7 @@ dependencies:
284
284
  requirements:
285
285
  - - ">="
286
286
  - !ruby/object:Gem::Version
287
- version: 1.2.8
287
+ version: 1.3.0
288
288
  - - "<"
289
289
  - !ruby/object:Gem::Version
290
290
  version: 2.0.0
@@ -334,7 +334,7 @@ dependencies:
334
334
  requirements:
335
335
  - - ">="
336
336
  - !ruby/object:Gem::Version
337
- version: 1.4.0
337
+ version: 1.6.0
338
338
  - - "<"
339
339
  - !ruby/object:Gem::Version
340
340
  version: 2.0.0
@@ -344,7 +344,7 @@ dependencies:
344
344
  requirements:
345
345
  - - ">="
346
346
  - !ruby/object:Gem::Version
347
- version: 1.4.0
347
+ version: 1.6.0
348
348
  - - "<"
349
349
  - !ruby/object:Gem::Version
350
350
  version: 2.0.0
@@ -354,7 +354,7 @@ dependencies:
354
354
  requirements:
355
355
  - - ">="
356
356
  - !ruby/object:Gem::Version
357
- version: 1.2.1
357
+ version: 1.3.0
358
358
  - - "<"
359
359
  - !ruby/object:Gem::Version
360
360
  version: 2.0.0
@@ -364,7 +364,7 @@ dependencies:
364
364
  requirements:
365
365
  - - ">="
366
366
  - !ruby/object:Gem::Version
367
- version: 1.2.1
367
+ version: 1.3.0
368
368
  - - "<"
369
369
  - !ruby/object:Gem::Version
370
370
  version: 2.0.0
@@ -394,7 +394,7 @@ dependencies:
394
394
  requirements:
395
395
  - - ">="
396
396
  - !ruby/object:Gem::Version
397
- version: 0.4.2
397
+ version: 0.5.0
398
398
  - - "<"
399
399
  - !ruby/object:Gem::Version
400
400
  version: 1.0.0
@@ -404,7 +404,7 @@ dependencies:
404
404
  requirements:
405
405
  - - ">="
406
406
  - !ruby/object:Gem::Version
407
- version: 0.4.2
407
+ version: 0.5.0
408
408
  - - "<"
409
409
  - !ruby/object:Gem::Version
410
410
  version: 1.0.0
@@ -414,7 +414,7 @@ dependencies:
414
414
  requirements:
415
415
  - - ">="
416
416
  - !ruby/object:Gem::Version
417
- version: 0.2.5
417
+ version: 0.3.0
418
418
  - - "<"
419
419
  - !ruby/object:Gem::Version
420
420
  version: 1.0.0
@@ -424,7 +424,7 @@ dependencies:
424
424
  requirements:
425
425
  - - ">="
426
426
  - !ruby/object:Gem::Version
427
- version: 0.2.5
427
+ version: 0.3.0
428
428
  - - "<"
429
429
  - !ruby/object:Gem::Version
430
430
  version: 1.0.0
@@ -677,6 +677,7 @@ files:
677
677
  - lib/fastlane/actions/notify.rb
678
678
  - lib/fastlane/actions/number_of_commits.rb
679
679
  - lib/fastlane/actions/oclint.rb
680
+ - lib/fastlane/actions/onesignal.rb
680
681
  - lib/fastlane/actions/opt_out_usage.rb
681
682
  - lib/fastlane/actions/pem.rb
682
683
  - lib/fastlane/actions/pilot.rb