fastlane-plugin-dependency_manager_outdated 0.2.0 → 0.2.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 +4 -4
- data/lib/fastlane/plugin/dependency_manager_outdated/actions/dependency_manager_outdated_action.rb +1 -1
- data/lib/fastlane/plugin/dependency_manager_outdated/helper/carthage_outdated_helper.rb +3 -3
- data/lib/fastlane/plugin/dependency_manager_outdated/helper/cocoapods_outdated_helper.rb +3 -3
- data/lib/fastlane/plugin/dependency_manager_outdated/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f82e8b9e45007572ee1d46cdd69ac47ba209f6b12462a4d3373f6da841d42177
|
|
4
|
+
data.tar.gz: c3e5eb8dafa2b4ad34441437252eda7a8da063830865f0d0021625834d972168
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 793af16d941df3833a631b0fb6eea81426fc827b5df446dbee7b059e2597667ad6e589475fc69c7940e7bcd6bed83e194e2d8f47decab630c94d24304284a988
|
|
7
|
+
data.tar.gz: a387e37232142b2b9cd2097a31c3d488e1dab7de628ba69a7f6c02d498f37b230124ec05474219b51d1c3b99811d7ccaf0762185c404cddf7b69aa16942acf65
|
data/lib/fastlane/plugin/dependency_manager_outdated/actions/dependency_manager_outdated_action.rb
CHANGED
|
@@ -5,8 +5,8 @@ module Fastlane
|
|
|
5
5
|
module Actions
|
|
6
6
|
class DependencyManagerOutdatedAction < Action
|
|
7
7
|
def self.run(params)
|
|
8
|
-
Actions::CarthageOutdatedAction.run(params)
|
|
9
8
|
Actions::CocoapodsOutdatedAction.run(params)
|
|
9
|
+
Actions::CarthageOutdatedAction.run(params)
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def self.description
|
|
@@ -9,7 +9,7 @@ module Fastlane
|
|
|
9
9
|
# class methods that you define here become available in your action
|
|
10
10
|
# as `Helper::CarthageOutdatedHelper.your_method`
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
MESSAGE = "The following dependencies are outdated:"
|
|
13
13
|
# ex.)
|
|
14
14
|
# Alamofire "4.7.3" -> "4.7.3" (Latest: "4.8.2")
|
|
15
15
|
PATTERN = /^(\S+) "(\S+)" -> "(\S+)" \(Latest: "(\S+)"\)$/
|
|
@@ -23,11 +23,11 @@ module Fastlane
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
def self.message
|
|
26
|
-
|
|
26
|
+
MESSAGE
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def self.parse(str)
|
|
30
|
-
result = str.split(
|
|
30
|
+
result = str.split(MESSAGE + "\n")[1]
|
|
31
31
|
libs = result.split("\n")
|
|
32
32
|
|
|
33
33
|
results = []
|
|
@@ -10,7 +10,7 @@ module Fastlane
|
|
|
10
10
|
# as `Helper::CocoapodsOutdatedHelper.your_method`
|
|
11
11
|
#
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
MESSAGE = "The following pod updates are available:"
|
|
14
14
|
# ex.)
|
|
15
15
|
# - Fabric 1.7.8 -> 1.9.0 (latest version 1.9.0)
|
|
16
16
|
PATTERN = /^- (\S+) (\S+) -> (\S+) \(latest version (\S+)\)$/
|
|
@@ -20,11 +20,11 @@ module Fastlane
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def self.message
|
|
23
|
-
|
|
23
|
+
MESSAGE
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def self.parse(str)
|
|
27
|
-
result = str.split(
|
|
27
|
+
result = str.split(MESSAGE + "\n")[1]
|
|
28
28
|
libs = result.split("\n")
|
|
29
29
|
|
|
30
30
|
results = []
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-dependency_manager_outdated
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- matsuda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: slack-notifier
|