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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e49f02238cecaceabfd1b5fa5143f9e1981c6d9ab8fe7586d699148114839ab
4
- data.tar.gz: 69449690b189d9a0e66da82e27226ffb8515e3e97c8e455ecf938d8ebf3e2ac1
3
+ metadata.gz: f82e8b9e45007572ee1d46cdd69ac47ba209f6b12462a4d3373f6da841d42177
4
+ data.tar.gz: c3e5eb8dafa2b4ad34441437252eda7a8da063830865f0d0021625834d972168
5
5
  SHA512:
6
- metadata.gz: d388d31b9712fe790185096b9b75791f9ebcc86f6fc0a8733c69e513bbba475946727b6ae900a61427e1831b01e3186b608666dc2ac349ec9834437b555619ff
7
- data.tar.gz: fc4fed01a858b20e6d2c240b4c2ee9c93bed5984ac375f853925f761ae2d377569b8f97a2ddc81aa66810271a2f6bb55416438b3525f8a5dc830610a1a5ff4bc
6
+ metadata.gz: 793af16d941df3833a631b0fb6eea81426fc827b5df446dbee7b059e2597667ad6e589475fc69c7940e7bcd6bed83e194e2d8f47decab630c94d24304284a988
7
+ data.tar.gz: a387e37232142b2b9cd2097a31c3d488e1dab7de628ba69a7f6c02d498f37b230124ec05474219b51d1c3b99811d7ccaf0762185c404cddf7b69aa16942acf65
@@ -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
- SEPARATOR = "The following dependencies are outdated:"
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
- SEPARATOR
26
+ MESSAGE
27
27
  end
28
28
 
29
29
  def self.parse(str)
30
- result = str.split(SEPARATOR + "\n")[1]
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
- SEPARATOR = "The following pod updates are available:"
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
- SEPARATOR
23
+ MESSAGE
24
24
  end
25
25
 
26
26
  def self.parse(str)
27
- result = str.split(SEPARATOR + "\n")[1]
27
+ result = str.split(MESSAGE + "\n")[1]
28
28
  libs = result.split("\n")
29
29
 
30
30
  results = []
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module DependencyManagerOutdated
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
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.0
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-02 00:00:00.000000000 Z
11
+ date: 2019-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: slack-notifier