Skip to content

Commit 733a05f

Browse files
committed
Update gems
1 parent 0cb6061 commit 733a05f

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "Alamofire/Alamofire" "3.3.0"
1+
github "Alamofire/Alamofire" "3.3.1"
22
github "AliSoftware/OHHTTPStubs" "4.8.0"

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GEM
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10-
addressable (2.3.8)
10+
addressable (2.4.0)
1111
babosa (1.0.2)
1212
cert (1.4.0)
1313
fastlane_core (>= 0.29.1, < 1.0.0)
@@ -69,8 +69,8 @@ GEM
6969
faraday (>= 0.7.4, < 0.10)
7070
fastimage (1.6.8)
7171
addressable (~> 2.3, >= 2.3.5)
72-
fastlane (1.80.0)
73-
addressable (~> 2.3.8)
72+
fastlane (1.81.0)
73+
addressable (~> 2.3)
7474
cert (>= 1.4.0, < 2.0.0)
7575
credentials_manager (>= 0.15.0, < 1.0.0)
7676
deliver (>= 1.11.0, < 2.0.0)
@@ -85,11 +85,11 @@ GEM
8585
plist (~> 3.1.0)
8686
produce (>= 1.1.1, < 2.0.0)
8787
scan (>= 0.5.2, < 1.0.0)
88-
screengrab (>= 0.3.1, < 1.0.0)
88+
screengrab (>= 0.3.2, < 1.0.0)
8989
sigh (>= 1.6.1, < 2.0.0)
9090
slack-notifier (~> 1.3)
9191
snapshot (>= 1.12.1, < 2.0.0)
92-
spaceship (>= 0.24.1, < 1.0.0)
92+
spaceship (>= 0.25.1, < 1.0.0)
9393
supply (>= 0.6.1, < 1.0.0)
9494
terminal-notifier (~> 1.6.2)
9595
terminal-table (~> 1.4.5)
@@ -114,7 +114,7 @@ GEM
114114
fastlane_core (>= 0.36.1, < 1.0.0)
115115
mini_magick (~> 4.0.2)
116116
fuzzy_match (2.0.4)
117-
google-api-client (0.9.4)
117+
google-api-client (0.9.5)
118118
addressable (~> 2.3)
119119
googleauth (~> 0.5)
120120
httpclient (~> 2.7)
@@ -208,7 +208,7 @@ GEM
208208
terminal-table
209209
xcpretty (>= 0.2.1)
210210
xcpretty-travis-formatter (>= 0.0.3)
211-
screengrab (0.3.1)
211+
screengrab (0.3.2)
212212
fastlane_core (>= 0.38.0, < 1.0.0)
213213
security (0.1.3)
214214
sentry-raven (0.15.6)
@@ -228,7 +228,7 @@ GEM
228228
fastlane_core (>= 0.36.1, < 1.0.0)
229229
plist (~> 3.1.0)
230230
xcpretty (>= 0.2.1)
231-
spaceship (0.24.1)
231+
spaceship (0.25.1)
232232
colored
233233
credentials_manager (>= 0.9.0)
234234
faraday (~> 0.9)

fastlane/Fastfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,16 @@ end
3838

3939
desc 'Build for Carthage'
4040
lane :carthage_lint do
41-
sh('cd .. && carthage build --no-skip-current && cd fastlane')
41+
Dir.chdir '..' do
42+
sh "carthage build --no-skip-current --verbose"
43+
end
4244
end
4345

4446
desc 'Lint for Cocoapods'
4547
lane :pod_lint do
46-
sh('cd .. && pod lib lint && cd fastlane')
48+
Dir.chdir '..' do
49+
sh('pod lib lint --verbose')
50+
end
4751
end
4852

4953
desc 'Lint'
@@ -55,7 +59,9 @@ end
5559
desc 'Release new version'
5660
lane :release do |options|
5761
target_version = options[:version]
58-
abort 'The version is missed. Use `fastlane release version:{version_number}`.' if target_version.nil?
62+
unless target_version || !!(/^\d+\.\d+\.\d+$/ =~ target_version)
63+
abort 'The version is missed. Use `fastlane release version:{version_number}`.'
64+
end
5965

6066
ensure_git_branch
6167
ensure_git_status_clean

0 commit comments

Comments
 (0)