fastlane 0.1.4 → 0.1.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 +4 -4
- data/lib/fastlane/actions/slack.rb +2 -2
- data/lib/fastlane/actions/snapshot.rb +2 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8abc6739e97135815d7e4ca6f8a90c38e055a011
|
|
4
|
+
data.tar.gz: 6d24acc8ab9f92178854696d4fc7d6ad1d348e24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d5f9205bac106e16461cfe72c913d858654a30320c2a966f7b69410d83e99407cb369cb309aea8c43c8181efb2e3a520d688902c481c0ea9cd25b1bba1b282e
|
|
7
|
+
data.tar.gz: 19c709dcbb89bc92e94698cb004779ef60b5f030c8351319a21c040c15b7e98627fb899030797b813fa077085c0058c925e2da82575ed761aa6ae73b1f30f481
|
|
@@ -52,9 +52,9 @@ module Fastlane
|
|
|
52
52
|
icon_url: 'https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png',
|
|
53
53
|
attachments: [test_result]
|
|
54
54
|
|
|
55
|
-
unless result.code == 200
|
|
55
|
+
unless result.code.to_i == 200
|
|
56
56
|
Helper.log.debug result
|
|
57
|
-
raise "Error pushing Slack message, maybe the integration has no permission to post on this channel? Try removing the channel".red
|
|
57
|
+
raise "Error pushing Slack message, maybe the integration has no permission to post on this channel? Try removing the channel parameter in your Fastfile.".red
|
|
58
58
|
else
|
|
59
59
|
Helper.log.info "Successfully sent Slack notification".green
|
|
60
60
|
end
|
|
@@ -7,7 +7,8 @@ module Fastlane
|
|
|
7
7
|
class SnapshotAction
|
|
8
8
|
def self.run(params)
|
|
9
9
|
clean = true
|
|
10
|
-
clean = false if params.
|
|
10
|
+
clean = false if params.include?(:noclean)
|
|
11
|
+
$verbose = true if params.include?(:verbose)
|
|
11
12
|
|
|
12
13
|
if Helper.is_test?
|
|
13
14
|
Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] = Dir.pwd
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.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-01-
|
|
11
|
+
date: 2015-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|