gym 0.6.0 → 0.6.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: 30a7b849f783846aa81e20f82a41ba031c9aabef
4
- data.tar.gz: bcdf8bb5946c5bad1f28c104d5f739674d6bda8a
3
+ metadata.gz: c44ae4103a3937b3b2dbfc0b201e1520652fa651
4
+ data.tar.gz: 4fbe25b77c99bc72a5c28c61bc057ef047747bfe
5
5
  SHA512:
6
- metadata.gz: 70ef804df96c4bdae6d005ba422c2cc7676998c9a8573427038473fe67d8ea4f44a50f3b4eb55227763ad78e4742834dbafe81ff4f6ac0f027b76e845fde1c3a
7
- data.tar.gz: edca9aacc075e79583f7642c6277bfb10b71cd95b1223aa4a5fa9af3df99b86c5f2459e5cbfd6d7efe31eb3059c26655b05e4e65691cf4d088f3bd2c65a5ae8b
6
+ metadata.gz: 7674e79afd4c3363eab5bfdd63f046a44e5038f3da5b8fc8e3b4420a8a9570ea844c92488cfa25f1e25b6a2140741eb9a09f83d41dbbb0d91de5ddc61152dd9f
7
+ data.tar.gz: 038d960b5a7ded9c0eecacca639c1cb816693aa0d68e05e23ba7b82cb8ca3f0015dfa5f7b6da0f4ab6d9ce3a3c241dded317b8727242410a6d9453a39dcc082b
data/README.md CHANGED
@@ -131,7 +131,7 @@ If you run into any issues, use the `verbose` mode to get more information
131
131
 
132
132
  To pass boolean parameters make sure to use `gym` like this:
133
133
 
134
- gym --upload_bitcode true --upload_symbols true
134
+ gym --include_bitcode true --include_symbols true
135
135
 
136
136
 
137
137
  # Gymfile
@@ -50,8 +50,8 @@ module Gym
50
50
 
51
51
  def config_content
52
52
  require 'plist'
53
- symbols = (Gym.config[:upload_symbols] ? true : false)
54
- bitcode = (Gym.config[:upload_bitcode] ? true : false)
53
+ symbols = (Gym.config[:include_symbols] ? true : false)
54
+ bitcode = (Gym.config[:include_bitcode] ? true : false)
55
55
 
56
56
  {
57
57
  method: 'app-store',
@@ -101,14 +101,14 @@ module Gym
101
101
  verify_block: proc do |value|
102
102
  raise "File not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
103
103
  end),
104
- FastlaneCore::ConfigItem.new(key: :upload_symbols,
104
+ FastlaneCore::ConfigItem.new(key: :include_symbols,
105
105
  short_option: "-m",
106
- env_name: "GYM_UPLOAD_SYMBOLS",
106
+ env_name: "GYM_INCLUDE_SYMBOLS",
107
107
  description: "Should the ipa file include symbols?",
108
108
  default_value: true),
109
- FastlaneCore::ConfigItem.new(key: :upload_bitcode,
109
+ FastlaneCore::ConfigItem.new(key: :include_bitcode,
110
110
  short_option: "-z",
111
- env_name: "GYM_UPLOAD_BITCODE",
111
+ env_name: "GYM_INCLUDE_BITCODE",
112
112
  description: "Should the ipa include bitcode?",
113
113
  default_value: false),
114
114
  FastlaneCore::ConfigItem.new(key: :provisioning_profile_path,
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.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.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause