gym 0.9.1 → 1.0.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.
- checksums.yaml +4 -4
- data/lib/gym/options.rb +35 -34
- data/lib/gym/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: caeea23f88216dd183d1848e6f2c02810e3f7bf3
|
|
4
|
+
data.tar.gz: d4d65e88910033eaedf15d44f328fb7d75de6c8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 481af33ef8b8108a7ebf7062b65a9ea39502d0db8d58f11aace74988ac02d259d4a7ac4f0df9e352993d1517ad38bd753e25f88062cc1e4c9960385fae83c91a
|
|
7
|
+
data.tar.gz: 3682baea7db87dadf2acb71e29d4b2d3a5f87f3e7bb04682213feec2a3606e752bbb95871b441836a571f971ff2cc42ba7cb6ae033a09aa75e451b20a608e92c
|
data/lib/gym/options.rb
CHANGED
|
@@ -49,11 +49,6 @@ module Gym
|
|
|
49
49
|
env_name: "GYM_OUTPUT_DIRECTORY",
|
|
50
50
|
description: "The directory in which the ipa file should be stored in",
|
|
51
51
|
default_value: "."),
|
|
52
|
-
FastlaneCore::ConfigItem.new(key: :archive_path,
|
|
53
|
-
short_option: "-b",
|
|
54
|
-
env_name: "GYM_ARCHIVE_PATH",
|
|
55
|
-
description: "The directory in which the archive file should be stored in",
|
|
56
|
-
optional: true),
|
|
57
52
|
FastlaneCore::ConfigItem.new(key: :output_name,
|
|
58
53
|
short_option: "-n",
|
|
59
54
|
env_name: "GYM_OUTPUT_NAME",
|
|
@@ -62,16 +57,6 @@ module Gym
|
|
|
62
57
|
verify_block: proc do |value|
|
|
63
58
|
value.gsub!(".ipa", "")
|
|
64
59
|
end),
|
|
65
|
-
FastlaneCore::ConfigItem.new(key: :buildlog_path,
|
|
66
|
-
short_option: "-l",
|
|
67
|
-
env_name: "GYM_BUILDLOG_PATH",
|
|
68
|
-
description: "The directory where to store the build log",
|
|
69
|
-
default_value: "~/Library/Logs/gym"),
|
|
70
|
-
FastlaneCore::ConfigItem.new(key: :sdk,
|
|
71
|
-
short_option: "-k",
|
|
72
|
-
env_name: "GYM_SDK",
|
|
73
|
-
description: "The SDK that should be used for building the application",
|
|
74
|
-
optional: true),
|
|
75
60
|
FastlaneCore::ConfigItem.new(key: :configuration,
|
|
76
61
|
short_option: "-q",
|
|
77
62
|
env_name: "GYM_CONFIGURATION",
|
|
@@ -88,24 +73,6 @@ module Gym
|
|
|
88
73
|
env_name: "GYM_CODE_SIGNING_IDENTITY",
|
|
89
74
|
description: "The name of the code signing identity to use. It has to match the name exactly. e.g. 'iPhone Distribution: SunApps GmbH'",
|
|
90
75
|
optional: true),
|
|
91
|
-
FastlaneCore::ConfigItem.new(key: :destination,
|
|
92
|
-
short_option: "-d",
|
|
93
|
-
env_name: "GYM_DESTINATION",
|
|
94
|
-
description: "Use a custom destination for building the app",
|
|
95
|
-
optional: true),
|
|
96
|
-
FastlaneCore::ConfigItem.new(key: :xcargs,
|
|
97
|
-
short_option: "-x",
|
|
98
|
-
env_name: "GYM_XCARGS",
|
|
99
|
-
description: "Pass additional arguments to xcodebuild. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS=\"-ObjC -lstdc++\"",
|
|
100
|
-
optional: true),
|
|
101
|
-
FastlaneCore::ConfigItem.new(key: :xcconfig,
|
|
102
|
-
short_option: "-y",
|
|
103
|
-
env_name: "GYM_XCCONFIG",
|
|
104
|
-
description: "Use an extra XCCONFIG file to build your app",
|
|
105
|
-
optional: true,
|
|
106
|
-
verify_block: proc do |value|
|
|
107
|
-
raise "File not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
|
|
108
|
-
end),
|
|
109
76
|
FastlaneCore::ConfigItem.new(key: :include_symbols,
|
|
110
77
|
short_option: "-m",
|
|
111
78
|
env_name: "GYM_INCLUDE_SYMBOLS",
|
|
@@ -138,6 +105,23 @@ module Gym
|
|
|
138
105
|
av = %w(app-store ad-hoc package enterprise development developer-id)
|
|
139
106
|
raise "Unsupported export_method, must be: #{av}" unless av.include?(value)
|
|
140
107
|
end),
|
|
108
|
+
|
|
109
|
+
# Very optional
|
|
110
|
+
FastlaneCore::ConfigItem.new(key: :archive_path,
|
|
111
|
+
short_option: "-b",
|
|
112
|
+
env_name: "GYM_ARCHIVE_PATH",
|
|
113
|
+
description: "The directory in which the archive file should be stored in",
|
|
114
|
+
optional: true),
|
|
115
|
+
FastlaneCore::ConfigItem.new(key: :buildlog_path,
|
|
116
|
+
short_option: "-l",
|
|
117
|
+
env_name: "GYM_BUILDLOG_PATH",
|
|
118
|
+
description: "The directory where to store the build log",
|
|
119
|
+
default_value: "~/Library/Logs/gym"),
|
|
120
|
+
FastlaneCore::ConfigItem.new(key: :sdk,
|
|
121
|
+
short_option: "-k",
|
|
122
|
+
env_name: "GYM_SDK",
|
|
123
|
+
description: "The SDK that should be used for building the application",
|
|
124
|
+
optional: true),
|
|
141
125
|
FastlaneCore::ConfigItem.new(key: :provisioning_profile_path,
|
|
142
126
|
short_option: "-e",
|
|
143
127
|
env_name: "GYM_PROVISIONING_PROFILE_PATH",
|
|
@@ -145,8 +129,25 @@ module Gym
|
|
|
145
129
|
optional: true,
|
|
146
130
|
verify_block: proc do |value|
|
|
147
131
|
raise "Provisioning profile not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
|
|
132
|
+
end),
|
|
133
|
+
FastlaneCore::ConfigItem.new(key: :destination,
|
|
134
|
+
short_option: "-d",
|
|
135
|
+
env_name: "GYM_DESTINATION",
|
|
136
|
+
description: "Use a custom destination for building the app",
|
|
137
|
+
optional: true),
|
|
138
|
+
FastlaneCore::ConfigItem.new(key: :xcargs,
|
|
139
|
+
short_option: "-x",
|
|
140
|
+
env_name: "GYM_XCARGS",
|
|
141
|
+
description: "Pass additional arguments to xcodebuild. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS=\"-ObjC -lstdc++\"",
|
|
142
|
+
optional: true),
|
|
143
|
+
FastlaneCore::ConfigItem.new(key: :xcconfig,
|
|
144
|
+
short_option: "-y",
|
|
145
|
+
env_name: "GYM_XCCONFIG",
|
|
146
|
+
description: "Use an extra XCCONFIG file to build your app",
|
|
147
|
+
optional: true,
|
|
148
|
+
verify_block: proc do |value|
|
|
149
|
+
raise "File not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
|
|
148
150
|
end)
|
|
149
|
-
|
|
150
151
|
]
|
|
151
152
|
end
|
|
152
153
|
end
|
data/lib/gym/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.25.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.25.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|
|
@@ -34,16 +34,16 @@ dependencies:
|
|
|
34
34
|
name: xcpretty
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0'
|
|
39
|
+
version: '0.1'
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - "
|
|
44
|
+
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '0'
|
|
46
|
+
version: '0.1'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: terminal-table
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -106,14 +106,14 @@ dependencies:
|
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: 1.
|
|
109
|
+
version: 1.33.0
|
|
110
110
|
type: :development
|
|
111
111
|
prerelease: false
|
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
113
|
requirements:
|
|
114
114
|
- - ">="
|
|
115
115
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: 1.
|
|
116
|
+
version: 1.33.0
|
|
117
117
|
- !ruby/object:Gem::Dependency
|
|
118
118
|
name: rake
|
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|