fastlane 2.40.0.beta.20170622010014 → 2.40.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/cert/README.md +3 -1
  3. data/deliver/README.md +5 -1
  4. data/deliver/lib/deliver/options.rb +16 -0
  5. data/deliver/lib/deliver/runner.rb +36 -2
  6. data/fastlane/README.md +3 -1
  7. data/fastlane/lib/fastlane/actions/precheck.rb +52 -0
  8. data/fastlane/lib/fastlane/tools.rb +2 -1
  9. data/fastlane/lib/fastlane/version.rb +1 -1
  10. data/fastlane_core/README.md +2 -1
  11. data/frameit/README.md +3 -1
  12. data/gym/README.md +3 -1
  13. data/match/README.md +3 -1
  14. data/pem/README.md +3 -1
  15. data/pilot/README.md +3 -1
  16. data/precheck/README.md +174 -0
  17. data/precheck/lib/assets/PrecheckfileTemplate +28 -0
  18. data/precheck/lib/precheck.rb +22 -0
  19. data/precheck/lib/precheck/commands_generator.rb +56 -0
  20. data/precheck/lib/precheck/item_to_check.rb +58 -0
  21. data/precheck/lib/precheck/options.rb +63 -0
  22. data/precheck/lib/precheck/rule.rb +169 -0
  23. data/precheck/lib/precheck/rule_check_result.rb +19 -0
  24. data/precheck/lib/precheck/rule_processor.rb +199 -0
  25. data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +64 -0
  26. data/precheck/lib/precheck/rules/copyright_date_rule.rb +38 -0
  27. data/precheck/lib/precheck/rules/curse_words_rule.rb +57 -0
  28. data/precheck/lib/precheck/rules/custom_text_rule.rb +36 -0
  29. data/precheck/lib/precheck/rules/future_functionality_rule.rb +34 -0
  30. data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +38 -0
  31. data/precheck/lib/precheck/rules/other_platforms_rule.rb +38 -0
  32. data/precheck/lib/precheck/rules/placeholder_words_rule.rb +33 -0
  33. data/precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt +349 -0
  34. data/precheck/lib/precheck/rules/test_words_rule.rb +31 -0
  35. data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +42 -0
  36. data/precheck/lib/precheck/runner.rb +164 -0
  37. data/produce/README.md +3 -1
  38. data/scan/README.md +3 -1
  39. data/screengrab/README.md +2 -1
  40. data/sigh/README.md +3 -1
  41. data/snapshot/README.md +3 -1
  42. data/spaceship/README.md +2 -1
  43. data/spaceship/lib/spaceship/tunes/language_item.rb +5 -1
  44. data/supply/README.md +3 -1
  45. metadata +38 -14
@@ -0,0 +1,31 @@
1
+ require 'precheck/rule'
2
+ require 'precheck/rules/abstract_text_match_rule'
3
+
4
+ module Precheck
5
+ class TestWordsRule < AbstractTextMatchRule
6
+ def self.key
7
+ :test_words
8
+ end
9
+
10
+ def self.env_name
11
+ "RULE_TEST_WORDS"
12
+ end
13
+
14
+ def self.friendly_name
15
+ "No words indicating test content"
16
+ end
17
+
18
+ def self.description
19
+ "using text indicating this release is a test"
20
+ end
21
+
22
+ def lowercased_words_to_look_for
23
+ [
24
+ "testing",
25
+ "just a test",
26
+ "alpha test",
27
+ "beta test"
28
+ ].map(&:downcase)
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,42 @@
1
+ require 'precheck/rule'
2
+
3
+ module Precheck
4
+ class UnreachableURLRule < URLRule
5
+ def self.key
6
+ :unreachable_urls
7
+ end
8
+
9
+ def self.env_name
10
+ "RULE_UNREACHABLE_URLS"
11
+ end
12
+
13
+ def self.friendly_name
14
+ "No broken urls"
15
+ end
16
+
17
+ def self.description
18
+ "unreachable URLs in app metadata"
19
+ end
20
+
21
+ def rule_block
22
+ return lambda { |url|
23
+ url = url.to_s.strip
24
+ return RuleReturn.new(validation_state: Precheck::VALIDATION_STATES[:failed], failure_data: "empty url") if url.empty?
25
+
26
+ begin
27
+ request = Faraday.new(url) do |connection|
28
+ connection.use FaradayMiddleware::FollowRedirects
29
+ connection.adapter :net_http
30
+ end
31
+ return RuleReturn.new(validation_state: Precheck::VALIDATION_STATES[:failed], failure_data: url) unless request.head.status == 200
32
+ rescue
33
+ UI.verbose "URL #{url} not reachable 😵"
34
+ # I can only return :fail here, but I also want to return #{url}
35
+ return RuleReturn.new(validation_state: VALIDATION_STATES[:failed], failure_data: "unreachable: #{url}")
36
+ end
37
+
38
+ return RuleReturn.new(validation_state: VALIDATION_STATES[:passed])
39
+ }
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,164 @@
1
+ require 'fastlane'
2
+ require 'fastlane_core'
3
+ require 'spaceship'
4
+ require 'terminal-table'
5
+ require 'precheck/rule_processor'
6
+
7
+ module Precheck
8
+ class Runner
9
+ attr_accessor :spaceship
10
+
11
+ # Uses the spaceship to download app metadata and then run all rule checkers
12
+ def run
13
+ Precheck.config.load_configuration_file(Precheck.precheckfile_name)
14
+
15
+ FastlaneCore::PrintTable.print_values(config: Precheck.config,
16
+ hide_keys: [:output_path],
17
+ title: "Summary for precheck #{Fastlane::VERSION}")
18
+
19
+ unless Spaceship::Tunes.client
20
+ UI.message "Starting login with user '#{Precheck.config[:username]}'"
21
+ Spaceship::Tunes.login(Precheck.config[:username])
22
+ Spaceship::Tunes.select_team
23
+
24
+ UI.message "Successfully logged in"
25
+ end
26
+
27
+ UI.message "Checking app for precheck rule violations"
28
+
29
+ ensure_app_exists!
30
+
31
+ processor_result = check_for_rule_violations(app: app, app_version: latest_app_version)
32
+
33
+ if processor_result.items_not_checked?
34
+ print_items_not_checked(processor_result: processor_result)
35
+ end
36
+
37
+ if processor_result.has_errors_or_warnings?
38
+ summary_table = build_potential_problems_table(processor_result: processor_result)
39
+ puts summary_table
40
+ end
41
+
42
+ if processor_result.should_trigger_user_error?
43
+ UI.user_error!("precheck found one or more potential problems that must be addressed before submitting to review")
44
+ return false
45
+ end
46
+
47
+ if !processor_result.has_errors_or_warnings? && !processor_result.items_not_checked?
48
+ UI.message "precheck 👮‍♀️ 👮 finished without detecting any potential problems 🛫".green
49
+ end
50
+
51
+ return true
52
+ end
53
+
54
+ def print_items_not_checked(processor_result: nil)
55
+ names = processor_result.items_not_checked.map(&:friendly_name)
56
+ UI.message "😶 Metadata fields not checked by any rule: #{names.join(', ')}".yellow if names.length > 0
57
+ end
58
+
59
+ def build_potential_problems_table(processor_result: nil)
60
+ error_results = processor_result.error_results
61
+ warning_results = processor_result.warning_results
62
+
63
+ rows = []
64
+
65
+ warning_results.each do |rule, results|
66
+ results.each do |result|
67
+ rows << [result.item.friendly_name, result.rule_return.failure_data.yellow]
68
+ end
69
+ end
70
+
71
+ error_results.each do |rule, results|
72
+ results.each do |result|
73
+ rows << [result.item.friendly_name, result.rule_return.failure_data.red]
74
+ end
75
+ end
76
+
77
+ if rows.length == 0
78
+ return nil
79
+ else
80
+ return Terminal::Table.new(
81
+ title: "Potential problems".red,
82
+ headings: ["Field", "Failure reason"],
83
+ rows: FastlaneCore::PrintTable.transform_output(rows)
84
+ ).to_s
85
+ end
86
+ end
87
+
88
+ def check_for_rule_violations(app: nil, app_version: nil)
89
+ Precheck::RuleProcessor.process_app_and_version(
90
+ app: app,
91
+ app_version: app_version,
92
+ rules: Precheck::Options.rules
93
+ )
94
+ end
95
+
96
+ def rendered_failed_results_table(failed_results: nil)
97
+ rows = []
98
+ failed_results.each do |failed_result|
99
+ rows << [failed_result.rule.key, failed_result.item.friendly_name]
100
+ end
101
+
102
+ return Terminal::Table.new(
103
+ title: "Failed rules".red,
104
+ headings: ["Name", "App metadata field: (language code)"],
105
+ rows: FastlaneCore::PrintTable.transform_output(rows)
106
+ ).to_s
107
+ end
108
+
109
+ def rendered_rules_checked_table(rules_checked: nil)
110
+ rows = []
111
+ rules_checked.each do |rule|
112
+ rows << [rule.key, rule.description]
113
+ end
114
+
115
+ return Terminal::Table.new(
116
+ title: "Enabled rules".green,
117
+ headings: ["Name", "Description"],
118
+ rows: FastlaneCore::PrintTable.transform_output(rows)
119
+ ).to_s
120
+ end
121
+
122
+ def rendered_skipped_rules_table(skipped_rules: nil)
123
+ return nil if skipped_rules.empty?
124
+
125
+ rows = []
126
+ skipped_rules.each do |rule|
127
+ rows << [rule.key, rule.description]
128
+ end
129
+
130
+ return Terminal::Table.new(
131
+ title: "Skipped rules".yellow,
132
+ headings: ["Name", "Description"],
133
+ rows: FastlaneCore::PrintTable.transform_output(rows)
134
+ ).to_s
135
+ end
136
+
137
+ def build_items_not_checked_table(items_not_checked: nil)
138
+ rows = []
139
+ items_not_checked.each do |item|
140
+ rows << [item.item_name, item.friendly_name]
141
+ end
142
+
143
+ return Terminal::Table.new(
144
+ title: "Not analyzed".yellow,
145
+ headings: ["Name", "Friendly name"],
146
+ rows: FastlaneCore::PrintTable.transform_output(rows)
147
+ ).to_s
148
+ end
149
+
150
+ def app
151
+ Spaceship::Tunes::Application.find(Precheck.config[:app_identifier])
152
+ end
153
+
154
+ def latest_app_version
155
+ @latest_version ||= app.latest_version
156
+ end
157
+
158
+ # Makes sure the current App ID exists. If not, it will show an appropriate error message
159
+ def ensure_app_exists!
160
+ return if app
161
+ UI.user_error!("Could not find app with App Identifier '#{Precheck.config[:app_identifier]}'")
162
+ end
163
+ end
164
+ end
data/produce/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -244,6 +245,7 @@ You'll still have to fill out the remaining information (like screenshots, app d
244
245
  - [`gym`](https://github.com/fastlane/fastlane/tree/master/gym): Building your iOS apps has never been easier
245
246
  - [`scan`](https://github.com/fastlane/fastlane/tree/master/scan): The easiest way to run tests of your iOS and Mac app
246
247
  - [`match`](https://github.com/fastlane/fastlane/tree/master/match): Easily sync your certificates and profiles across your team using git
248
+ - [`precheck`](https://github.com/fastlane/fastlane/tree/master/precheck): Check your app using a community driven set of App Store review rules to avoid being rejected
247
249
 
248
250
  ##### [Do you like fastlane? Be the first to know about updates and new fastlane tools](https://tinyletter.com/fastlane-tools)
249
251
 
data/scan/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <b>scan</b> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -205,6 +206,7 @@ For more information visit the [fastlane GitHub page](https://github.com/fastlan
205
206
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
206
207
  - [`gym`](https://github.com/fastlane/fastlane/tree/master/gym): Building your iOS apps has never been easier
207
208
  - [`match`](https://github.com/fastlane/fastlane/tree/master/match): Easily sync your certificates and profiles across your team using git
209
+ - [`precheck`](https://github.com/fastlane/fastlane/tree/master/precheck): Check your app using a community driven set of App Store review rules to avoid being rejected
208
210
 
209
211
  ##### [Do you like fastlane? Be the first to know about updates and new fastlane tools](https://tinyletter.com/fastlane-tools)
210
212
 
data/screengrab/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
data/sigh/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -228,6 +229,7 @@ If you're using [cert](https://github.com/fastlane/fastlane/tree/master/cert) in
228
229
  - [`gym`](https://github.com/fastlane/fastlane/tree/master/gym): Building your iOS apps has never been easier
229
230
  - [`scan`](https://github.com/fastlane/fastlane/tree/master/scan): The easiest way to run tests of your iOS and Mac app
230
231
  - [`match`](https://github.com/fastlane/fastlane/tree/master/match): Easily sync your certificates and profiles across your team using git
232
+ - [`precheck`](https://github.com/fastlane/fastlane/tree/master/precheck): Check your app using a community driven set of App Store review rules to avoid being rejected
231
233
 
232
234
  ##### [Do you like fastlane? Be the first to know about updates and new fastlane tools](https://tinyletter.com/fastlane-tools)
233
235
 
data/snapshot/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -360,6 +361,7 @@ Radar [23062925](https://openradar.appspot.com/radar?id=5056366381105152) has be
360
361
  - [`gym`](https://github.com/fastlane/fastlane/tree/master/gym): Building your iOS apps has never been easier
361
362
  - [`scan`](https://github.com/fastlane/fastlane/tree/master/scan): The easiest way to run tests of your iOS and Mac app
362
363
  - [`match`](https://github.com/fastlane/fastlane/tree/master/match): Easily sync your certificates and profiles across your team using git
364
+ - [`precheck`](https://github.com/fastlane/fastlane/tree/master/precheck): Check your app using a community driven set of App Store review rules to avoid being rejected
363
365
 
364
366
  ##### [Do you like fastlane? Be the first to know about updates and new fastlane tools](https://tinyletter.com/fastlane-tools)
365
367
 
data/spaceship/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -13,13 +13,17 @@ module Spaceship
13
13
  end
14
14
 
15
15
  def [](key)
16
- get_lang(key)[identifier]['value']
16
+ get_value(key: key)
17
17
  end
18
18
 
19
19
  def []=(key, value)
20
20
  get_lang(key)[identifier]['value'] = value
21
21
  end
22
22
 
23
+ def get_value(key: nil)
24
+ get_lang(key)[identifier]['value']
25
+ end
26
+
23
27
  def get_lang(lang)
24
28
  result = self.original_array.find do |current|
25
29
  current['language'] == lang or current['localeCode'] == lang # Apple being consistent
data/supply/README.md CHANGED
@@ -18,7 +18,8 @@
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/fastlane/tree/master/gym">gym</a> &bull;
20
20
  <a href="https://github.com/fastlane/fastlane/tree/master/scan">scan</a> &bull;
21
- <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a>
21
+ <a href="https://github.com/fastlane/fastlane/tree/master/match">match</a> &bull;
22
+ <a href="https://github.com/fastlane/fastlane/tree/master/precheck">precheck</a>
22
23
  </p>
23
24
 
24
25
  -------
@@ -199,6 +200,7 @@ This can be done using the `--track_promote_to` parameter. The `--track_promote
199
200
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
200
201
  - [`gym`](https://github.com/fastlane/fastlane/tree/master/gym): Building your iOS apps has never been easier
201
202
  - [`match`](https://github.com/fastlane/fastlane/tree/master/match): Easily sync your certificates and profiles across your team using git
203
+ - [`precheck`](https://github.com/fastlane/fastlane/tree/master/precheck): Check your app using a community driven set of App Store review rules to avoid being rejected
202
204
 
203
205
  ##### [Do you like fastlane? Be the first to know about updates and new fastlane tools](https://tinyletter.com/fastlane-tools)
204
206
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.40.0.beta.20170622010014
4
+ version: 2.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -935,6 +935,7 @@ files:
935
935
  - fastlane/lib/fastlane/actions/pod_lib_lint.rb
936
936
  - fastlane/lib/fastlane/actions/pod_push.rb
937
937
  - fastlane/lib/fastlane/actions/podio_item.rb
938
+ - fastlane/lib/fastlane/actions/precheck.rb
938
939
  - fastlane/lib/fastlane/actions/produce.rb
939
940
  - fastlane/lib/fastlane/actions/prompt.rb
940
941
  - fastlane/lib/fastlane/actions/push_git_tags.rb
@@ -1201,6 +1202,27 @@ files:
1201
1202
  - pilot/lib/pilot/tester_importer.rb
1202
1203
  - pilot/lib/pilot/tester_manager.rb
1203
1204
  - pilot/lib/pilot/tester_util.rb
1205
+ - precheck/README.md
1206
+ - precheck/lib/assets/PrecheckfileTemplate
1207
+ - precheck/lib/precheck.rb
1208
+ - precheck/lib/precheck/commands_generator.rb
1209
+ - precheck/lib/precheck/item_to_check.rb
1210
+ - precheck/lib/precheck/options.rb
1211
+ - precheck/lib/precheck/rule.rb
1212
+ - precheck/lib/precheck/rule_check_result.rb
1213
+ - precheck/lib/precheck/rule_processor.rb
1214
+ - precheck/lib/precheck/rules/abstract_text_match_rule.rb
1215
+ - precheck/lib/precheck/rules/copyright_date_rule.rb
1216
+ - precheck/lib/precheck/rules/curse_words_rule.rb
1217
+ - precheck/lib/precheck/rules/custom_text_rule.rb
1218
+ - precheck/lib/precheck/rules/future_functionality_rule.rb
1219
+ - precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb
1220
+ - precheck/lib/precheck/rules/other_platforms_rule.rb
1221
+ - precheck/lib/precheck/rules/placeholder_words_rule.rb
1222
+ - precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt
1223
+ - precheck/lib/precheck/rules/test_words_rule.rb
1224
+ - precheck/lib/precheck/rules/unreachable_urls_rule.rb
1225
+ - precheck/lib/precheck/runner.rb
1204
1226
  - produce/README.md
1205
1227
  - produce/lib/produce.rb
1206
1228
  - produce/lib/produce/available_default_languages.rb
@@ -1375,23 +1397,24 @@ metadata:
1375
1397
  post_install_message:
1376
1398
  rdoc_options: []
1377
1399
  require_paths:
1378
- - scan/lib
1379
- - fastlane_core/lib
1400
+ - cert/lib
1401
+ - credentials_manager/lib
1402
+ - deliver/lib
1380
1403
  - fastlane/lib
1404
+ - fastlane_core/lib
1405
+ - frameit/lib
1406
+ - gym/lib
1407
+ - match/lib
1381
1408
  - pem/lib
1382
- - deliver/lib
1383
- - snapshot/lib
1384
1409
  - pilot/lib
1410
+ - precheck/lib
1385
1411
  - produce/lib
1386
- - gym/lib
1387
- - match/lib
1412
+ - scan/lib
1413
+ - screengrab/lib
1388
1414
  - sigh/lib
1389
- - cert/lib
1390
- - credentials_manager/lib
1391
- - frameit/lib
1415
+ - snapshot/lib
1392
1416
  - spaceship/lib
1393
1417
  - supply/lib
1394
- - screengrab/lib
1395
1418
  required_ruby_version: !ruby/object:Gem::Requirement
1396
1419
  requirements:
1397
1420
  - - ">="
@@ -1399,14 +1422,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1399
1422
  version: 2.0.0
1400
1423
  required_rubygems_version: !ruby/object:Gem::Requirement
1401
1424
  requirements:
1402
- - - ">"
1425
+ - - ">="
1403
1426
  - !ruby/object:Gem::Version
1404
- version: 1.3.1
1427
+ version: '0'
1405
1428
  requirements: []
1406
1429
  rubyforge_project:
1407
- rubygems_version: 2.4.5.2
1430
+ rubygems_version: 2.5.1
1408
1431
  signing_key:
1409
1432
  specification_version: 4
1410
1433
  summary: The easiest way to automate beta deployments and releases for your iOS and
1411
1434
  Android apps
1412
1435
  test_files: []
1436
+ has_rdoc: