anticuado 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0469e4e67a364e053c8de4379427e1e5610f3a4
4
- data.tar.gz: e9824fbc11df2db98a643bdf00f2c8fdffad0fc7
3
+ metadata.gz: d608ab22b727a0b323e8fc53b25a0dff0a8bd36a
4
+ data.tar.gz: 47bb9bd13589def073b4e6fbee9cb3ec9f28084e
5
5
  SHA512:
6
- metadata.gz: 8b2ac1f420560bf3ca7e98e2307f144fa81d86fd4a4bc81dbb8e75c707bdd268150878233d060a9d4453f5f9819c01f9b24a64aaa075251afd70ddd944ea2028
7
- data.tar.gz: ec5e6f176f41de99cf8f038964615b80a7bed9ff7053cb6df2813ae901a1b9c1a470187327432e0bbb088eddbfe338bbef9039db74906c8ea1b04f78a26aea48
6
+ metadata.gz: 6c8f1524a85b144703b23c22c73dc9260e9be4e3f856c28720d2ee0d3fce539ec1dbedca86b4afac015c621f832829c503b7b2444720033017b09f286ee57393
7
+ data.tar.gz: b6f2fa489857bf9a36592f7e364a0462b12d3313b2ce9a3ce1e27a8ff324494508c47bdebad6d0e777837168f6610edd8f00808e32092bb31f96f0c4b1d942b2
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
- Copyright (c) 2016 Kazuaki MATSUO
3
+ Copyright (c) 2016 Kazuaki Matsuo
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # Anticuado
2
2
 
3
- This library collect output
3
+ This library collect __outdated__ libraries for each platforms.
4
+
5
+ ## Support
6
+ - Java
7
+ - Gradle
8
+ - iOS
9
+ - CocoaPods
10
+ - Carthage
11
+ - Ruby
12
+ - Bundler
13
+ - Elixir
14
+ - Hex
4
15
 
5
16
  ## Installation
6
17
 
@@ -68,7 +79,7 @@ outdated = ::Anticuado::IOS::Carthage.outdated project: "path/to/project"
68
79
  This library require the following plugin to collect library versions.
69
80
  https://github.com/ben-manes/gradle-versions-plugin
70
81
 
71
- 1. install `mix`. Read [official document](http://elixir-lang.org/install.html).
82
+ 1. install `gradle` or set gradle wrapper, `gradlew`. Read [official document](https://gradle.org/).
72
83
  2. Run as the following script.
73
84
 
74
85
  ```ruby
@@ -22,7 +22,7 @@ module Anticuado
22
22
  # @return [Array] Array include outdated data.
23
23
  # If target project have no outdated data, then return blank array such as `[]`
24
24
  def self.format(outdated)
25
- array = outdated.split(/\R/)
25
+ array = outdated.split(/\R/).map(&:strip)
26
26
  index = array.find_index("Dependency Current Latest Requirement")
27
27
 
28
28
  return [] if index.nil?
@@ -17,7 +17,7 @@ module Anticuado
17
17
  # @return [Array] Array include outdated data.
18
18
  # If target project have no outdated data, then return blank array such as `[]`
19
19
  def self.format(outdated)
20
- array = outdated.split(/\R/)
20
+ array = outdated.split(/\R/).map(&:strip)
21
21
  index = array.find_index("The following dependencies are outdated:")
22
22
 
23
23
  return [] if index.nil?
@@ -17,7 +17,7 @@ module Anticuado
17
17
  # @return [Array] Array include outdated data.
18
18
  # If target project have no outdated data, then return blank array such as `[]`
19
19
  def self.format(outdated)
20
- array = outdated.split(/\R/)
20
+ array = outdated.split(/\R/).map(&:strip)
21
21
  index = array.find_index("The following pod updates are available:")
22
22
 
23
23
  return [] if index.nil?
@@ -19,7 +19,7 @@ module Anticuado
19
19
  # @return [Array] Array include outdated data.
20
20
  # If target project have no outdated data, then return blank array such as `[]`
21
21
  def self.format(outdated)
22
- array = outdated.split(/\R/)
22
+ array = outdated.split(/\R/).map(&:strip)
23
23
  index = array.find_index("Outdated gems included in the bundle:")
24
24
 
25
25
  return [] if index.nil?
@@ -1,3 +1,3 @@
1
1
  module Anticuado
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anticuado
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-01 00:00:00.000000000 Z
11
+ date: 2016-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -63,7 +63,7 @@ files:
63
63
  - ".travis.yml"
64
64
  - CODE_OF_CONDUCT.md
65
65
  - Gemfile
66
- - LICENSE.txt
66
+ - LICENSE
67
67
  - README.md
68
68
  - Rakefile
69
69
  - anticuado.gemspec