fastlane-plugin-apprepo 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.coveralls.yml +2 -0
  3. data/.gitignore +0 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +4 -0
  6. data/Gemfile +7 -1
  7. data/README.md +9 -2
  8. data/assets/RepofileDefault +34 -0
  9. data/assets/apprepo.png +0 -0
  10. data/assets/circle.key +27 -0
  11. data/assets/fastlane.png +0 -0
  12. data/assets/manifest.png +0 -0
  13. data/circle.yml +11 -9
  14. data/coverage/.last_run.json +5 -0
  15. data/coverage/.resultset.json +1244 -0
  16. data/coverage/.resultset.json.lock +0 -0
  17. data/fastlane-plugin-apprepo.gemspec +6 -2
  18. data/fastlane/Appfile +1 -0
  19. data/fastlane/Fastfile +42 -0
  20. data/fastlane/Pluginfile +1 -0
  21. data/fastlane/Repofile +33 -0
  22. data/greeter.rb +6 -0
  23. data/lib/fastlane/plugin/apprepo.rb +26 -7
  24. data/lib/fastlane/plugin/apprepo/actions/apprepo_action.rb +106 -92
  25. data/lib/fastlane/plugin/apprepo/actions/download_manifest.rb +40 -0
  26. data/lib/fastlane/plugin/apprepo/actions/init.rb +46 -0
  27. data/lib/fastlane/plugin/apprepo/actions/rubocop.rb +29 -0
  28. data/lib/fastlane/plugin/apprepo/actions/run.rb +69 -0
  29. data/lib/fastlane/plugin/apprepo/actions/submit.rb +41 -0
  30. data/lib/fastlane/plugin/apprepo/analyser.rb +35 -0
  31. data/lib/fastlane/plugin/apprepo/command.rb +17 -0
  32. data/lib/fastlane/plugin/apprepo/commands_generator.rb +121 -0
  33. data/lib/fastlane/plugin/apprepo/detect_values.rb +29 -0
  34. data/lib/fastlane/plugin/apprepo/helper/analyser.rb +35 -0
  35. data/lib/fastlane/plugin/apprepo/helper/commands_generator.rb +121 -0
  36. data/lib/fastlane/plugin/apprepo/helper/detect_values.rb +29 -0
  37. data/lib/fastlane/plugin/apprepo/helper/loader.rb +15 -0
  38. data/lib/fastlane/plugin/apprepo/helper/manifest.rb +44 -0
  39. data/lib/fastlane/plugin/apprepo/helper/options.rb +120 -0
  40. data/lib/fastlane/plugin/apprepo/helper/runner.rb +68 -0
  41. data/lib/fastlane/plugin/apprepo/helper/setup.rb +49 -0
  42. data/lib/fastlane/plugin/apprepo/helper/uploader.rb +301 -0
  43. data/lib/fastlane/plugin/apprepo/loader.rb +15 -0
  44. data/lib/fastlane/plugin/apprepo/manifest.rb +44 -0
  45. data/lib/fastlane/plugin/apprepo/options.rb +120 -0
  46. data/lib/fastlane/plugin/apprepo/runner.rb +68 -0
  47. data/lib/fastlane/plugin/apprepo/setup.rb +49 -0
  48. data/lib/fastlane/plugin/apprepo/uploader.rb +301 -0
  49. data/lib/fastlane/plugin/apprepo/version.rb +4 -3
  50. data/manifest.json +10 -0
  51. data/sampleapp.ipa +1 -0
  52. data/test +0 -0
  53. metadata +46 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 918bdc19bdae67a2c396557c71bcaaf6cde63c25
4
- data.tar.gz: d226c46f604c1f7a49a97c561916c5866cf8af90
3
+ metadata.gz: 266f7cba8a3ff1cfdac850b19b3ae48ad97ff7bb
4
+ data.tar.gz: 2c9ce404c6111c884acec6841916facc00ff0a9a
5
5
  SHA512:
6
- metadata.gz: 5c404d4f062dcdc5b5dc70cbf9e0f8665490d38c531bb560f044ebbef083fb69696bbcd267620ef29cb5d3929aeade5759a3c389e064a937fac659b334b239e5
7
- data.tar.gz: b1591aced1d1141650dd1a947012564473cf71549bc5c6af63e63bd2654bd7c690a18636c3d293412c7037a8ee3e998354ed3c8d4bc7d7af38eea3720d698488
6
+ metadata.gz: b62aef72e163e0844edd4b23b05dbf3ed0b8114e0a6d60e60c81ff34fdfb092ed0b1c7d57385d606fda0563903bdaa63432e767506acb94d2fdafd1ac5190c22
7
+ data.tar.gz: 44288ac3057368d5c80f102b36028d1c488ca2836a05e36434eeb109f61081533467a1473c351c1a898e41ff60ac729b5b905bb4c6986028e75e42dc62ede5cd
data/.coveralls.yml ADDED
@@ -0,0 +1,2 @@
1
+ repo_token: 3gibQQGsuI6OVgOdth7jMxhsP7tRQw2FD
2
+
data/.gitignore ADDED
File without changes
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --require spec_helper
3
+
data/.rubocop.yml ADDED
@@ -0,0 +1,4 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'lib/fastlane/plugin/apprepo/actions/apprepo_action.rb'
4
+ - 'lib/fastlane/plugin/apprepo/version.rb'
data/Gemfile CHANGED
@@ -1,5 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'json'
3
+ gem 'rspec_junit_formatter', '0.2.2'
4
+ gem 'coveralls', require: false
5
+ #gem 'json', '1.8.1'
4
6
 
5
7
  gemspec
8
+
9
+ # added to support plugin-manager branch of Fastlane
10
+ plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
11
+ eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
data/README.md CHANGED
@@ -1,7 +1,14 @@
1
1
  [![Twitter: @igraczech](https://img.shields.io/badge/contact-%40igraczech-green.svg?style=flat)](https://twitter.com/igraczech)
2
2
  [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/suculent/fastlane-plugin-apprepo/blob/master/LICENSE)
3
- [![Gem](https://img.shields.io/gem/v/fastlane-plugin-apprepo.svg?style=flat)](http://rubygems.org/gems/fastlane-plugin-apprepo)
3
+ ![Status](https://img.shields.io/badge/_waiting--for_-_fastlane--plugins--manager_-yellow.svg)
4
4
  [![Build Status](https://img.shields.io/circleci/project/suculent/fastlane-plugin-apprepo.svg?style=flat)](https://circleci.com/gh/suculent/fastlane-plugin-apprepo)
5
+ [![Gem](https://img.shields.io/gem/v/fastlane-plugin-apprepo.svg?style=flat)](http://rubygems.org/gems/fastlane-plugin-apprepo)
6
+ [![Coverage Status](https://coveralls.io/repos/github/suculent/fastlane-plugin-apprepo/badge.svg?branch=master)](https://coveralls.io/github/suculent/fastlane-plugin-apprepo?branch=master)
7
+
8
+ ### An experimental Fastlane plugin
9
+
10
+ Work in progress. This is nothing more than an empty structure for a Fastlane plugin. It's existing published gem and can be installed. It should not cause any errors, just print out some lines of text.
5
11
 
6
- An experimental fastlane plugin
12
+ It already has all options required by my other [Apprepo/SFTP uploader](https://github.com/suculent/apprepo) project, but there's not much to link, until upstream project will be complete.
7
13
 
14
+ Check out [Fastlane](https://fastlane.tools)
@@ -0,0 +1,34 @@
1
+ # encoding: utf-8
2
+
3
+ ###################### More Options ######################
4
+ # If you want to have even more control, check out the documentation
5
+ # https://github.com/suculent/apprepo/blob/master/Repofile.md
6
+
7
+
8
+ ###################### Automatically generated ######################
9
+ # Feel free to remove the following line if you use fastlane (which you should)
10
+
11
+ app_identifier "[[APP_IDENTIFIER]]"
12
+ ipa "[[Apprepo_IPA_PATH]]"
13
+ app_version "[[APP_VERSION]]"
14
+ repo_title "[[APP_NAME]]"
15
+
16
+ #
17
+ # Authentication
18
+ #
19
+
20
+ # You can use your '~/.ssh/config' file to setup RSA keys to Apprepo, or use following options:
21
+
22
+ repo_url "repo.teacloud.net"
23
+ repo_user "circle"
24
+ repo_key "./lib/assets/circle.pub"
25
+
26
+ # notify true # Add this to automatically notify the Apprepo users after uploading metadata/binary.
27
+
28
+ # manifest_path "./manifest.json" # Path to the manifest.json you want to use.
29
+
30
+ # repo_summary "Some application"
31
+
32
+ # repo_description "Detailed application description."
33
+
34
+ # app_icon './AppIcon.png'
Binary file
data/assets/circle.key ADDED
@@ -0,0 +1,27 @@
1
+ -----BEGIN RSA PRIVATE KEY-----
2
+ MIIEowIBAAKCAQEAo9SLRM1eDMn1VNIQAz18e92jvozWX6LyfW4FZz4IB1sCoa6q
3
+ qmK2krxTsyK/OHd7id7BsdxqUBRTkVq/5qs8jtcFKFBdeMt4hX0j/Un+SlTbZSQM
4
+ 3Aw2PQrp3uOHmTVbQg7NQc5HfSpbp0WstR1r4eTV3EjqMbJxUIcI3eDzz8HAH2j3
5
+ 1a9AbI9Skjbwa7ofPdzZA1DPg22z13Oif17s0+4+dWgFI28zQKkuvpye2aDnAqUp
6
+ u19m3H2n3y3lNaJy504zi7k9wll5ujiMjllxX9j41ghXSWQVrTvtvSu+c5yDK7Kd
7
+ tUebFcrGFQqqukhB25ARMv6e1j+oakocpKgixQIDAQABAoIBAHZCN2GryMb8hX37
8
+ wBlGqfQTkl469YfFbLsDzxyuV0dP979UANfLN7UGAnkdjOCqxt9Hj5Pe4lL5yTT0
9
+ R++vDaCiL5PhJwfKAC6DnZX5cnifdls0wZ+ZpRE9LoJ4xWnfbQdq/dkRmOMNz2kY
10
+ T0nReg1ujL1dWMgU4dzaDJl1Bymgr0OPU/N1puU7OWNSf5phQNeFotcQePfV8jrT
11
+ TkF8B9hhdz7Zm/5cyk0T0XulnIKoJxz6kl8/RQrSrYCwMCpZKZ4pPa7eX8aNDOZR
12
+ De4/ls44zjg+Oo3ua9nCiHNhPaqcTlXuJGZsPZhmE8YDPbhnspfLTxj1WwcI9l0q
13
+ kanrf4ECgYEA0/Ts7MjJGgUT/79stp3p6HI1uksj3/e5jP+lVOQMpEHunaXDQeEa
14
+ xFn1azXysWyf6v5httgZPwc98Ra1YYPmUNTHJ+7IvhyC8v2pqROEmy29EDvDHbmH
15
+ NXTiVp5GoyjjpkUFhvZeoeuqeWNBTXrzEIuDMxN4xjEDI/tCR78A4aUCgYEAxd+F
16
+ k00inaK1o7YByoSWEnVyFfGUIG/FLQNnMrlFtft/q7gKIvB2A12Gw7RZmU7/xgU3
17
+ tDoMe+02XHmCJcqsrv2QdOzGQNZecYx3fPPfRQuN8SLf+j3YyTWojD0b2qcctcZi
18
+ I2kxx2yigl1n1FsGwOXS5TBmE15XRPkKGZZoMqECgYBDi5j5OF9F6HpgFQu7AoXp
19
+ KoROsuVi2VoLQejZLbeNnOlC2fFojCjwi8529QE7Y2dvBtPy5djdyhwGOXth8Ruz
20
+ hKtW4XSdiQ5+CzJHDE5E+YV3p+PdFCOveGksu1G9aylo8jP5t4eeyDBScLv9ygGt
21
+ sxgDbeAeIL5keAy+OnM4dQKBgCLSNAJ5B4dwE8DsjaIi9PnomxwLeELBCJTkTWva
22
+ uM7OpGgGqhn98PakpcuY2E+nXFFvp57avEmus+tQIrwdz4e37Yz2Ael1EAexbXGa
23
+ xQa0gtUViw7RhW3bOH79XgJ7eAzxDWIn5++tSWfhohz3q9eUWimk+8Gaz4a+wK1C
24
+ D7IhAoGBAM4ggOntOZ2MgIjiGfqF8JcRyLU7EJZzVBJ/EeT1UR8elqAo30ZXIwOD
25
+ wKT/UQOa6DiV+OpwlqGxvw3eCc5Pwb3vM7IKeR19scfauDMoev5h46uoClt8bG84
26
+ 73EQcFipyK5+zuiGA7uSf/0IZljmkTI5NecEk8T+VPVr+3eYEt/r
27
+ -----END RSA PRIVATE KEY-----
Binary file
Binary file
data/circle.yml CHANGED
@@ -2,25 +2,27 @@ machine:
2
2
  ruby:
3
3
  version: 2.2.5
4
4
 
5
- #machine:
6
- # xcode:
7
- # version: "7.3"
8
-
9
5
  dependencies:
10
6
  pre:
11
7
  - gem install bundler
12
8
  - gem install fastlane
13
9
  - bundle update
10
+ - COVERALLS_REPO_TOKEN=3gibQQGsuI6OVgOdth7jMxhsP7tRQw2FD
14
11
 
15
12
  override:
16
13
  - bundle install: # note ':' here
17
14
  timeout: 180 # fail if command has no output for 3 minutes
18
15
 
19
- #test:
20
- # override:
21
- # - ruby ./lib/apprepo.rb run
22
- # - ruby ./lib/apprepo.rb run --ipa ./sampleapp.ipa
23
- # - RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
16
+ test:
17
+ override:
18
+ - nslookup repo.teacloud.net
19
+ - ruby ./lib/fastlane/plugin/apprepo.rb
20
+ - ruby ./lib/fastlane/plugin/apprepo.rb download_manifest
21
+ - ruby ./lib/fastlane/plugin/apprepo.rb submit
22
+ - COVERALLS_REPO_TOKEN=5NIxBldNBfJzPgvlQnVojxNNW0197fUUf RAILS_ENV=test bundle exec rspec
23
+ - COVERALLS_REPO_TOKEN=3gibQQGsuI6OVgOdth7jMxhsP7tRQw2FD RAILS_ENV=test bundle exec rspec
24
+ - COVERALLS_REPO_TOKEN=3gibQQGsuI6OVgOdth7jMxhsP7tRQw2FD RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
25
+ - curl -X POST --data-urlencode 'payload={"text":"CirleCI Integration Completed."}' https://hooks.slack.com/services/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
24
26
 
25
27
  ## Custom notifications
26
28
  notify:
@@ -0,0 +1,5 @@
1
+ {
2
+ "result": {
3
+ "covered_percent": 61.03
4
+ }
5
+ }
@@ -0,0 +1,1244 @@
1
+ {
2
+ "RSpec": {
3
+ "coverage": {
4
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo.rb": [
5
+ null,
6
+ null,
7
+ null,
8
+ null,
9
+ 1,
10
+ 1,
11
+ 1,
12
+ null,
13
+ 1,
14
+ null,
15
+ 1,
16
+ null,
17
+ 1,
18
+ null,
19
+ 1,
20
+ 1,
21
+ null,
22
+ null,
23
+ null,
24
+ 1,
25
+ 1,
26
+ null,
27
+ null,
28
+ null,
29
+ 1,
30
+ 15,
31
+ 15,
32
+ null,
33
+ null,
34
+ null,
35
+ 1,
36
+ 1,
37
+ 1,
38
+ 1,
39
+ 1,
40
+ 1,
41
+ null
42
+ ],
43
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/apprepo_action.rb": [
44
+ 1,
45
+ null,
46
+ 1,
47
+ 1,
48
+ null,
49
+ null,
50
+ null,
51
+ null,
52
+ null,
53
+ null,
54
+ null,
55
+ 1,
56
+ 1,
57
+ 0,
58
+ null,
59
+ 0,
60
+ null,
61
+ 0,
62
+ 0,
63
+ null,
64
+ null,
65
+ null,
66
+ 0,
67
+ 0,
68
+ null,
69
+ null,
70
+ null,
71
+ 1,
72
+ 0,
73
+ null,
74
+ null,
75
+ 1,
76
+ null,
77
+ null,
78
+ null,
79
+ null,
80
+ null,
81
+ null,
82
+ null,
83
+ null,
84
+ 0,
85
+ 0,
86
+ null,
87
+ null,
88
+ null,
89
+ 0,
90
+ 0,
91
+ null,
92
+ null,
93
+ null,
94
+ null,
95
+ null,
96
+ null,
97
+ null,
98
+ null,
99
+ null,
100
+ null,
101
+ null,
102
+ null,
103
+ null,
104
+ null,
105
+ null,
106
+ null,
107
+ null,
108
+ null,
109
+ null,
110
+ null,
111
+ null,
112
+ null,
113
+ null,
114
+ null,
115
+ null,
116
+ null,
117
+ null,
118
+ null,
119
+ null,
120
+ null,
121
+ null,
122
+ null,
123
+ null,
124
+ null,
125
+ null,
126
+ null,
127
+ null,
128
+ null,
129
+ null,
130
+ null,
131
+ null,
132
+ null,
133
+ null,
134
+ null,
135
+ null,
136
+ null,
137
+ null,
138
+ null,
139
+ null,
140
+ null,
141
+ null,
142
+ null,
143
+ null,
144
+ null,
145
+ null,
146
+ null,
147
+ null,
148
+ null,
149
+ null,
150
+ null,
151
+ null,
152
+ null,
153
+ null,
154
+ null,
155
+ null,
156
+ null,
157
+ null,
158
+ null,
159
+ 0,
160
+ null,
161
+ null,
162
+ null,
163
+ null,
164
+ null,
165
+ null,
166
+ null,
167
+ null,
168
+ null,
169
+ 0,
170
+ 0,
171
+ null,
172
+ null,
173
+ null,
174
+ null,
175
+ 1,
176
+ 0,
177
+ null,
178
+ null,
179
+ 1,
180
+ 0,
181
+ null,
182
+ null,
183
+ null,
184
+ null
185
+ ],
186
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/download_manifest.rb": [
187
+ 1,
188
+ 1,
189
+ 1,
190
+ 1,
191
+ 0,
192
+ 0,
193
+ 0,
194
+ 0,
195
+ 0,
196
+ 0,
197
+ 0,
198
+ 0,
199
+ 0,
200
+ 0,
201
+ null,
202
+ null,
203
+ null,
204
+ null,
205
+ null,
206
+ null,
207
+ null,
208
+ null,
209
+ 1,
210
+ 0,
211
+ null,
212
+ null,
213
+ 1,
214
+ 0,
215
+ null,
216
+ null,
217
+ 1,
218
+ 0,
219
+ null,
220
+ null,
221
+ 1,
222
+ 0,
223
+ null,
224
+ null,
225
+ null,
226
+ null
227
+ ],
228
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/init.rb": [
229
+ 1,
230
+ 1,
231
+ 1,
232
+ 1,
233
+ null,
234
+ 0,
235
+ 0,
236
+ 0,
237
+ 0,
238
+ 0,
239
+ 0,
240
+ 0,
241
+ null,
242
+ null,
243
+ 0,
244
+ 0,
245
+ 0,
246
+ 0,
247
+ 0,
248
+ 0,
249
+ null,
250
+ null,
251
+ null,
252
+ null,
253
+ null,
254
+ null,
255
+ null,
256
+ null,
257
+ 1,
258
+ 0,
259
+ null,
260
+ null,
261
+ 1,
262
+ 0,
263
+ null,
264
+ null,
265
+ 1,
266
+ 0,
267
+ null,
268
+ null,
269
+ 1,
270
+ 0,
271
+ null,
272
+ null,
273
+ null,
274
+ null
275
+ ],
276
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/rubocop.rb": [
277
+ 1,
278
+ 1,
279
+ 1,
280
+ 1,
281
+ 0,
282
+ null,
283
+ null,
284
+ null,
285
+ null,
286
+ null,
287
+ null,
288
+ 1,
289
+ 0,
290
+ null,
291
+ null,
292
+ 1,
293
+ 0,
294
+ null,
295
+ null,
296
+ 1,
297
+ 0,
298
+ null,
299
+ null,
300
+ 1,
301
+ 0,
302
+ null,
303
+ null,
304
+ null,
305
+ null
306
+ ],
307
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/run.rb": [
308
+ 1,
309
+ null,
310
+ 1,
311
+ 1,
312
+ 1,
313
+ 1,
314
+ 0,
315
+ 0,
316
+ 0,
317
+ 0,
318
+ 0,
319
+ 0,
320
+ null,
321
+ 0,
322
+ 0,
323
+ null,
324
+ 0,
325
+ null,
326
+ 0,
327
+ null,
328
+ 0,
329
+ null,
330
+ 0,
331
+ 0,
332
+ 0,
333
+ 0,
334
+ 0,
335
+ 0,
336
+ 0,
337
+ 0,
338
+ 0,
339
+ null,
340
+ 0,
341
+ 0,
342
+ 0,
343
+ 0,
344
+ 0,
345
+ 0,
346
+ null,
347
+ null,
348
+ null,
349
+ 0,
350
+ null,
351
+ null,
352
+ null,
353
+ null,
354
+ null,
355
+ null,
356
+ null,
357
+ null,
358
+ null,
359
+ 1,
360
+ 0,
361
+ null,
362
+ null,
363
+ 1,
364
+ 0,
365
+ null,
366
+ null,
367
+ 1,
368
+ 0,
369
+ null,
370
+ null,
371
+ 1,
372
+ 0,
373
+ null,
374
+ null,
375
+ null,
376
+ null
377
+ ],
378
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/actions/submit.rb": [
379
+ 1,
380
+ 1,
381
+ 1,
382
+ 1,
383
+ null,
384
+ 0,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ 0,
393
+ 0,
394
+ null,
395
+ null,
396
+ null,
397
+ null,
398
+ null,
399
+ null,
400
+ null,
401
+ null,
402
+ 1,
403
+ 0,
404
+ null,
405
+ null,
406
+ 1,
407
+ 0,
408
+ null,
409
+ null,
410
+ 1,
411
+ 0,
412
+ null,
413
+ null,
414
+ 1,
415
+ 0,
416
+ null,
417
+ null,
418
+ null,
419
+ null
420
+ ],
421
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/analyser.rb": [
422
+ 1,
423
+ 1,
424
+ 1,
425
+ 1,
426
+ 1,
427
+ null,
428
+ 1,
429
+ null,
430
+ 1,
431
+ 1,
432
+ null,
433
+ 1,
434
+ 1,
435
+ null,
436
+ 1,
437
+ 1,
438
+ null,
439
+ null,
440
+ null,
441
+ 1,
442
+ 0,
443
+ 0,
444
+ 0,
445
+ 0,
446
+ 0,
447
+ null,
448
+ null,
449
+ null,
450
+ 1,
451
+ 0,
452
+ 0,
453
+ null,
454
+ null,
455
+ null,
456
+ null
457
+ ],
458
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/uploader.rb": [
459
+ null,
460
+ null,
461
+ 1,
462
+ 1,
463
+ 1,
464
+ 1,
465
+ 1,
466
+ 1,
467
+ null,
468
+ 1,
469
+ null,
470
+ 1,
471
+ 1,
472
+ null,
473
+ null,
474
+ null,
475
+ 1,
476
+ 1,
477
+ null,
478
+ null,
479
+ null,
480
+ null,
481
+ null,
482
+ 1,
483
+ 1,
484
+ 1,
485
+ 1,
486
+ 1,
487
+ 1,
488
+ 1,
489
+ null,
490
+ null,
491
+ null,
492
+ 1,
493
+ 1,
494
+ 1,
495
+ 1,
496
+ 1,
497
+ 1,
498
+ 1,
499
+ 1,
500
+ 1,
501
+ null,
502
+ null,
503
+ null,
504
+ null,
505
+ null,
506
+ null,
507
+ null,
508
+ null,
509
+ null,
510
+ null,
511
+ null,
512
+ null,
513
+ null,
514
+ 1,
515
+ null,
516
+ 1,
517
+ null,
518
+ 1,
519
+ 0,
520
+ 0,
521
+ null,
522
+ null,
523
+ 1,
524
+ 1,
525
+ 1,
526
+ 0,
527
+ null,
528
+ null,
529
+ null,
530
+ 1,
531
+ 1,
532
+ 1,
533
+ 1,
534
+ 1,
535
+ 1,
536
+ null,
537
+ null,
538
+ 0,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ null,
543
+ null,
544
+ 1,
545
+ null,
546
+ null,
547
+ null,
548
+ null,
549
+ null,
550
+ null,
551
+ null,
552
+ null,
553
+ 1,
554
+ 0,
555
+ 0,
556
+ 0,
557
+ 0,
558
+ 0,
559
+ 0,
560
+ 0,
561
+ 0,
562
+ null,
563
+ null,
564
+ 0,
565
+ 0,
566
+ 0,
567
+ 0,
568
+ null,
569
+ null,
570
+ 0,
571
+ null,
572
+ null,
573
+ 1,
574
+ null,
575
+ 1,
576
+ 0,
577
+ 0,
578
+ 0,
579
+ 0,
580
+ 0,
581
+ 0,
582
+ 0,
583
+ 0,
584
+ null,
585
+ null,
586
+ null,
587
+ 1,
588
+ 1,
589
+ 1,
590
+ 1,
591
+ 1,
592
+ 1,
593
+ 1,
594
+ 1,
595
+ 1,
596
+ 1,
597
+ 1,
598
+ null,
599
+ 1,
600
+ 5,
601
+ null,
602
+ null,
603
+ null,
604
+ null,
605
+ null,
606
+ null,
607
+ null,
608
+ 1,
609
+ 1,
610
+ 1,
611
+ 1,
612
+ null,
613
+ 0,
614
+ 0,
615
+ null,
616
+ null,
617
+ null,
618
+ null,
619
+ null,
620
+ null,
621
+ null,
622
+ null,
623
+ 1,
624
+ 1,
625
+ 1,
626
+ 1,
627
+ null,
628
+ null,
629
+ null,
630
+ null,
631
+ null,
632
+ null,
633
+ 1,
634
+ 1,
635
+ 1,
636
+ 1,
637
+ 1,
638
+ 1,
639
+ 1,
640
+ 1,
641
+ null,
642
+ 0,
643
+ 0,
644
+ 0,
645
+ null,
646
+ 0,
647
+ 0,
648
+ null,
649
+ null,
650
+ null,
651
+ null,
652
+ null,
653
+ 0,
654
+ null,
655
+ null,
656
+ null,
657
+ null,
658
+ null,
659
+ null,
660
+ null,
661
+ null,
662
+ 1,
663
+ 1,
664
+ 1,
665
+ 1,
666
+ 1,
667
+ 1,
668
+ 1,
669
+ 1,
670
+ 1,
671
+ 1,
672
+ null,
673
+ null,
674
+ null,
675
+ 0,
676
+ null,
677
+ 1,
678
+ null,
679
+ null,
680
+ null,
681
+ null,
682
+ null,
683
+ null,
684
+ null,
685
+ 1,
686
+ 1,
687
+ 1,
688
+ 1,
689
+ 4,
690
+ null,
691
+ 1,
692
+ null,
693
+ 1,
694
+ 1,
695
+ null,
696
+ 1,
697
+ null,
698
+ 1,
699
+ null,
700
+ null,
701
+ null,
702
+ null,
703
+ null,
704
+ null,
705
+ null,
706
+ null,
707
+ null,
708
+ 1,
709
+ 1,
710
+ 1,
711
+ 1,
712
+ 4,
713
+ null,
714
+ 1,
715
+ null,
716
+ null,
717
+ null,
718
+ null,
719
+ 1,
720
+ 2,
721
+ null,
722
+ null,
723
+ 1,
724
+ 6,
725
+ null,
726
+ null,
727
+ 1,
728
+ 2,
729
+ null,
730
+ null,
731
+ 1,
732
+ 6,
733
+ null,
734
+ null,
735
+ 1,
736
+ 1,
737
+ null,
738
+ 0,
739
+ 0,
740
+ 0,
741
+ null,
742
+ null,
743
+ null,
744
+ null,
745
+ 1,
746
+ 1,
747
+ 1,
748
+ 1,
749
+ 1,
750
+ 1,
751
+ null,
752
+ 0,
753
+ null,
754
+ 1,
755
+ null,
756
+ null,
757
+ null,
758
+ null,
759
+ null
760
+ ],
761
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/options.rb": [
762
+ 1,
763
+ null,
764
+ 1,
765
+ 1,
766
+ null,
767
+ 1,
768
+ null,
769
+ 1,
770
+ null,
771
+ null,
772
+ null,
773
+ null,
774
+ null,
775
+ null,
776
+ null,
777
+ null,
778
+ 2,
779
+ 2,
780
+ 2,
781
+ null,
782
+ null,
783
+ null,
784
+ null,
785
+ null,
786
+ null,
787
+ null,
788
+ null,
789
+ null,
790
+ null,
791
+ null,
792
+ null,
793
+ null,
794
+ null,
795
+ null,
796
+ null,
797
+ null,
798
+ null,
799
+ null,
800
+ null,
801
+ null,
802
+ null,
803
+ null,
804
+ null,
805
+ null,
806
+ null,
807
+ null,
808
+ null,
809
+ 0,
810
+ null,
811
+ null,
812
+ null,
813
+ null,
814
+ null,
815
+ null,
816
+ null,
817
+ null,
818
+ 0,
819
+ null,
820
+ null,
821
+ null,
822
+ null,
823
+ null,
824
+ null,
825
+ null,
826
+ null,
827
+ null,
828
+ null,
829
+ null,
830
+ null,
831
+ null,
832
+ null,
833
+ null,
834
+ null,
835
+ null,
836
+ null,
837
+ null,
838
+ null,
839
+ null,
840
+ null,
841
+ null,
842
+ null,
843
+ null,
844
+ null,
845
+ null,
846
+ null,
847
+ null,
848
+ null,
849
+ null,
850
+ null,
851
+ null,
852
+ null,
853
+ null,
854
+ null,
855
+ null,
856
+ null,
857
+ null,
858
+ null,
859
+ null,
860
+ null,
861
+ null,
862
+ null,
863
+ null,
864
+ 0,
865
+ null,
866
+ null,
867
+ null,
868
+ null,
869
+ null,
870
+ null,
871
+ null,
872
+ null,
873
+ null,
874
+ 1,
875
+ 1,
876
+ null,
877
+ null,
878
+ null,
879
+ null,
880
+ null,
881
+ null
882
+ ],
883
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/commands_generator.rb": [
884
+ 1,
885
+ null,
886
+ 1,
887
+ null,
888
+ 1,
889
+ 1,
890
+ null,
891
+ 1,
892
+ 1,
893
+ null,
894
+ 1,
895
+ 0,
896
+ 0,
897
+ null,
898
+ 0,
899
+ 0,
900
+ null,
901
+ null,
902
+ 1,
903
+ 1,
904
+ null,
905
+ null,
906
+ 1,
907
+ 0,
908
+ null,
909
+ null,
910
+ null,
911
+ null,
912
+ null,
913
+ null,
914
+ null,
915
+ 1,
916
+ 1,
917
+ 1,
918
+ 1,
919
+ 1,
920
+ 1,
921
+ 1,
922
+ null,
923
+ 1,
924
+ 1,
925
+ null,
926
+ 1,
927
+ null,
928
+ 1,
929
+ null,
930
+ 1,
931
+ 1,
932
+ 1,
933
+ 1,
934
+ 1,
935
+ 1,
936
+ 1,
937
+ 1,
938
+ 1,
939
+ null,
940
+ 1,
941
+ 0,
942
+ 0,
943
+ 0,
944
+ 0,
945
+ 0,
946
+ null,
947
+ null,
948
+ null,
949
+ 1,
950
+ null,
951
+ null,
952
+ null,
953
+ 1,
954
+ 1,
955
+ 1,
956
+ 1,
957
+ 0,
958
+ 0,
959
+ 0,
960
+ 0,
961
+ 0,
962
+ null,
963
+ null,
964
+ null,
965
+ 1,
966
+ 1,
967
+ 1,
968
+ 1,
969
+ 0,
970
+ 0,
971
+ 0,
972
+ 0,
973
+ 0,
974
+ null,
975
+ null,
976
+ null,
977
+ 1,
978
+ 1,
979
+ 1,
980
+ 1,
981
+ 0,
982
+ 0,
983
+ 0,
984
+ null,
985
+ null,
986
+ 0,
987
+ 0,
988
+ 0,
989
+ 0,
990
+ 0,
991
+ 0,
992
+ null,
993
+ null,
994
+ null,
995
+ null,
996
+ null,
997
+ null,
998
+ 1,
999
+ null,
1000
+ 1,
1001
+ null,
1002
+ null,
1003
+ null,
1004
+ null
1005
+ ],
1006
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/detect_values.rb": [
1007
+ null,
1008
+ 1,
1009
+ 1,
1010
+ null,
1011
+ 1,
1012
+ 1,
1013
+ 1,
1014
+ 1,
1015
+ null,
1016
+ null,
1017
+ 1,
1018
+ 1,
1019
+ 0,
1020
+ null,
1021
+ null,
1022
+ 0,
1023
+ 0,
1024
+ 0,
1025
+ null,
1026
+ null,
1027
+ 1,
1028
+ 1,
1029
+ 1,
1030
+ 1,
1031
+ null,
1032
+ null,
1033
+ null,
1034
+ null,
1035
+ null
1036
+ ],
1037
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/loader.rb": [
1038
+ 1,
1039
+ null,
1040
+ 1,
1041
+ 1,
1042
+ null,
1043
+ 1,
1044
+ 1,
1045
+ null,
1046
+ 0,
1047
+ 0,
1048
+ 0,
1049
+ null,
1050
+ null,
1051
+ null,
1052
+ null
1053
+ ],
1054
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/manifest.rb": [
1055
+ 1,
1056
+ null,
1057
+ 1,
1058
+ 1,
1059
+ null,
1060
+ 1,
1061
+ null,
1062
+ null,
1063
+ null,
1064
+ null,
1065
+ 1,
1066
+ 1,
1067
+ 1,
1068
+ 1,
1069
+ 1,
1070
+ 1,
1071
+ 1,
1072
+ null,
1073
+ 1,
1074
+ 0,
1075
+ 0,
1076
+ null,
1077
+ null,
1078
+ 1,
1079
+ null,
1080
+ null,
1081
+ null,
1082
+ null,
1083
+ 1,
1084
+ 0,
1085
+ null,
1086
+ null,
1087
+ null,
1088
+ null,
1089
+ null,
1090
+ null,
1091
+ null,
1092
+ null,
1093
+ null,
1094
+ 0,
1095
+ null,
1096
+ null,
1097
+ null,
1098
+ null
1099
+ ],
1100
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/runner.rb": [
1101
+ 1,
1102
+ null,
1103
+ 1,
1104
+ 1,
1105
+ null,
1106
+ 1,
1107
+ 1,
1108
+ null,
1109
+ 1,
1110
+ 1,
1111
+ 1,
1112
+ 1,
1113
+ null,
1114
+ null,
1115
+ null,
1116
+ null,
1117
+ 1,
1118
+ 1,
1119
+ 1,
1120
+ 1,
1121
+ 1,
1122
+ 1,
1123
+ null,
1124
+ 1,
1125
+ 1,
1126
+ null,
1127
+ null,
1128
+ null,
1129
+ null,
1130
+ 1,
1131
+ 1,
1132
+ 1,
1133
+ 1,
1134
+ null,
1135
+ null,
1136
+ null,
1137
+ null,
1138
+ null,
1139
+ null,
1140
+ null,
1141
+ null,
1142
+ null,
1143
+ 1,
1144
+ 0,
1145
+ 0,
1146
+ 0,
1147
+ 0,
1148
+ 0,
1149
+ null,
1150
+ null,
1151
+ null,
1152
+ null,
1153
+ 1,
1154
+ 1,
1155
+ 1,
1156
+ 1,
1157
+ 1,
1158
+ 1,
1159
+ null,
1160
+ null,
1161
+ null,
1162
+ 1,
1163
+ null,
1164
+ 1,
1165
+ null,
1166
+ null,
1167
+ null,
1168
+ null
1169
+ ],
1170
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/lib/fastlane/plugin/apprepo/helper/setup.rb": [
1171
+ 1,
1172
+ 1,
1173
+ null,
1174
+ 1,
1175
+ 1,
1176
+ 0,
1177
+ 0,
1178
+ null,
1179
+ null,
1180
+ 0,
1181
+ null,
1182
+ 0,
1183
+ null,
1184
+ null,
1185
+ null,
1186
+ null,
1187
+ 1,
1188
+ null,
1189
+ null,
1190
+ null,
1191
+ null,
1192
+ 0,
1193
+ 0,
1194
+ 0,
1195
+ 0,
1196
+ 0,
1197
+ 0,
1198
+ null,
1199
+ null,
1200
+ null,
1201
+ 1,
1202
+ 0,
1203
+ 0,
1204
+ 0,
1205
+ 0,
1206
+ null,
1207
+ null,
1208
+ 1,
1209
+ 0,
1210
+ 0,
1211
+ 0,
1212
+ 0,
1213
+ 0,
1214
+ null,
1215
+ null,
1216
+ null,
1217
+ null,
1218
+ null,
1219
+ null
1220
+ ],
1221
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/spec/greeter_spec.rb": [
1222
+ 1,
1223
+ null,
1224
+ null,
1225
+ 1,
1226
+ 1,
1227
+ 1,
1228
+ 1,
1229
+ 1,
1230
+ null,
1231
+ null
1232
+ ],
1233
+ "/Users/sychram/Desktop/fastlane-plugin-apprepo/greeter.rb": [
1234
+ null,
1235
+ 1,
1236
+ 1,
1237
+ 1,
1238
+ null,
1239
+ null
1240
+ ]
1241
+ },
1242
+ "timestamp": 1465937846
1243
+ }
1244
+ }