gym 0.8.0 → 0.8.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 099aa893503965b03f44b2ea03f2b3c6d224a0b4
4
- data.tar.gz: 3e8b6067bf33fe938ae50bb7eaed8da969c9420e
3
+ metadata.gz: df0e9fa07fc14d3d303c941fc88f1595376b8d26
4
+ data.tar.gz: d4993d0c27a2cc4bb27ff6d14d60ac6e4c392b10
5
5
  SHA512:
6
- metadata.gz: 059f7b33d13250aec59a2dcbe18c65b58a20e0519acb87a908a14d97a23c787153901bfbd485fb57ac2c67df239747f9ff1d0d2fe71926c4cc4ddf4730df648f
7
- data.tar.gz: 298d860fac3afc21dcf38ca238c43901f42039f284d00aa519b9a8bbdff4a3ae94a9f9c535ee7e40675c0422af9974bfe99032c6635f52068ab47eaa73f5fa4b
6
+ metadata.gz: 489ee36c94c388ad342a8839966331771aab3ffacdc5c426c1cbac3c3a31307968e23f621da43127ccfdf7713d297aca7444136979ce93743ece0613232a5292
7
+ data.tar.gz: 1aa7f1e53f35769b1fae65fe8990be242d2b2ae4cb3b65425c342f06022c85bf41dd3a8e436063c21f02645304832e8360eb03743a4b26cde1abf092b36a7404
@@ -30,6 +30,9 @@ module Gym
30
30
 
31
31
  config[:output_name] ||= Gym.project.app_name
32
32
 
33
+ # we do it here, since the value is optional and should be pre-filled by fastlane if necessary
34
+ config[:export_method] ||= "app-store"
35
+
33
36
  return config
34
37
  end
35
38
 
data/lib/gym/options.rb CHANGED
@@ -132,8 +132,8 @@ module Gym
132
132
  short_option: "-j",
133
133
  env_name: "GYM_EXPORT_METHOD",
134
134
  description: "How should gym export the archive?",
135
- default_value: "app-store",
136
135
  is_string: true,
136
+ optional: true,
137
137
  verify_block: proc do |value|
138
138
  av = %w(app-store ad-hoc package enterprise development developer-id)
139
139
  raise "Unsupported export_method, must be: #{av}" unless av.include?(value)
data/lib/gym/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  DESCRIPTION = "Building your iOS apps has never been easier"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gym
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause