gym 0.4.4 → 0.4.5

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: ba99524dda1840364297ee98f0c8b1f7f7929fca
4
- data.tar.gz: 980dd881827e26d852b837d521a70298cf94bf3c
3
+ metadata.gz: afc2f16fa2edc720d5d6fd041213438de1e4e198
4
+ data.tar.gz: bf412d429e1af9eb9aa210d72d72c7549874b3b6
5
5
  SHA512:
6
- metadata.gz: 0b5c53016aa7a876e44125f3829fae1f358d2bd37eeceec7c7113c192e408ad85b7953833c3b91aa825914dd9b3feffee2ad9c6245c8f0bef416d93da34f3dea
7
- data.tar.gz: 2ed5745dd6f3dce809ef409a977a49cd486ec72797ba220f8754d9c112b3013906f242026a32ce61d96196c0c1ea328d45c7abde475e28062a532a43027ad4c0
6
+ metadata.gz: c75772deb67c02f264847370c90679ff0f844f13108224fad726ac2cfe0961961799c462157170505e8be7276d8b31d04bb399141934a8e30beced440ef2ba78
7
+ data.tar.gz: 9e6de65249e7b3146432bfdb36e42279cf4c8733e845dad1d627910dbbaa10993e421eeefdeda32a2b1025d23ae51b3d00b20b744b5ebe4fcf817f45513dc712
@@ -32,8 +32,6 @@ module Gym
32
32
 
33
33
  global_option("--verbose") { $verbose = true }
34
34
 
35
- always_trace!
36
-
37
35
  command :build do |c|
38
36
  c.syntax = "gym"
39
37
  c.description = "Just builds your app"
data/lib/gym/options.rb CHANGED
@@ -69,7 +69,7 @@ module Gym
69
69
  description: "The configuration to use when building the app. Defaults to 'Release'",
70
70
  optional: true),
71
71
  FastlaneCore::ConfigItem.new(key: :silent,
72
- short_option: "-t",
72
+ short_option: "-a",
73
73
  env_name: "GYM_SILENT",
74
74
  description: "Hide all information that's not necessary while building",
75
75
  default_value: false,
data/lib/gym/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "0.4.4"
2
+ VERSION = "0.4.5"
3
3
  DESCRIPTION = "Building your iOS apps has never been easier"
4
4
  end
@@ -27,7 +27,7 @@ module Gym
27
27
 
28
28
  # Add "SwiftSupport" to the .ipa archive
29
29
  Dir.chdir(tmpdir) do
30
- command_parts = ["zip --recurse-paths #{PackageCommandGenerator.ipa_path} SwiftSupport"]
30
+ command_parts = ["zip --recurse-paths '#{PackageCommandGenerator.ipa_path}' SwiftSupport"]
31
31
  command_parts << "> /dev/null" unless $verbose
32
32
  Runner.new.print_command(command_parts, "Fix Swift embedded code if needed") if $verbose
33
33
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gym
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-22 00:00:00.000000000 Z
11
+ date: 2015-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core