anticuado 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
  SHA1:
3
- metadata.gz: 6fba246b50b22915ca61b6ae8cedbb630791bef2
4
- data.tar.gz: b733a88861a93a73179fb0717fc17f57abefa3fb
3
+ metadata.gz: 31675036cd58e8544ca938b99df127755bb9d191
4
+ data.tar.gz: 54d55c1d599ca137532e9eb77601c754fe418b1f
5
5
  SHA512:
6
- metadata.gz: b929635f9391f9f0e9dc344b5f2c078dc5c6b161a90ad92b2ad53749fe340f45289185221154efcd02d730502e83ff2addf912e3f5d769d239a81010c3a4b6cd
7
- data.tar.gz: 2c3d9cb7e4beb38a6a05a58e900490545ca47babf45bcb4c20001e3d5dc35d582a956309aa5dfbce1a8af836d1d1b4f43251b6ed589c6d45662cb414a0d2a4db
6
+ metadata.gz: 9a30d2d2e920d71cc4e9b635b9cc07cf852e6c32ff9a617238b2a983441dd79dc634dcd0b3d3592224b190327e69d34538fe2154934b10c30ee4b8bfc406f647
7
+ data.tar.gz: 93be3158a36a7968ebb0b27be74d2ce330a64acaaab318502c948066297f03f69241736f0f2a23005d4d7c7eb7413af372d57a93d72dd6bf0c794facc6815307
@@ -1,5 +1,16 @@
1
1
  sudo: false
2
2
  language: ruby
3
+ cache: bundler
3
4
  rvm:
5
+ - 2.0.0
6
+ - 2.1.0
7
+ - 2.2.0
4
8
  - 2.3.0
5
- before_install: gem install bundler -v 1.12.5
9
+ os:
10
+ - linux
11
+ - osx
12
+ before_install:
13
+ - gem install bundler -v 1.12.5
14
+ script:
15
+ - bundle exec rake test
16
+
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Anticuado
2
2
 
3
+ [![Build Status](https://travis-ci.org/KazuCocoa/anticuado.svg?branch=master)](https://travis-ci.org/KazuCocoa/anticuado)
4
+
3
5
  This library collect __outdated__ libraries for each platforms. [Here](https://github.com/KazuCocoa/anticuado-example) is example how to use this library.
4
6
 
5
7
  ## Support
@@ -4,11 +4,11 @@ module Anticuado
4
4
  module Java
5
5
  class Gradle
6
6
  # require: https://github.com/ben-manes/gradle-versions-plugin
7
- # @param [Bool] wrapper Use gradle wrapper or use gradle directory.
8
7
  # @param [String] revision "release", "milestone" or "integration". Default is "release".
8
+ # @param [Bool] wrapper Use gradle wrapper or use gradle directory.
9
9
  # @param [String] format "plain", "json" or "xml". Default is "json".
10
10
  # @param [String] outdir Path to output the result. Default is "build/dependencyUpdates".
11
- def self.outdated(wrapper = false, project = nil, revision = "release", format = "json", outdir = "build/dependencyUpdates")
11
+ def self.outdated(project = nil, wrapper = false, revision = "release", format = "json", outdir = "build/dependencyUpdates")
12
12
  return puts "have no gradle command" if !wrapper && `which gradle`.empty?
13
13
 
14
14
  if project
@@ -1,3 +1,3 @@
1
1
  module Anticuado
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anticuado
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
  - Kazuaki MATSUO