travis-lint 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -1
- data/lib/travis/lint/linter.rb +1 -1
- data/lib/travis/lint/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
# What is travis-lint
|
2
2
|
|
3
3
|
`travis-lint` is a tool that checks your `.travis.yml` file for possible issues, deprecations and so on.
|
4
|
-
Supporting the gem, there
|
4
|
+
Supporting the gem, there used to be an online version of this tool at [lint.travis-ci.org](http://lint.travis-ci.org),
|
5
|
+
although it is currently down due to a security issue with the YAML parser. See [issue #17](https://github.com/travis-ci/travis-lint/issues/17) for updates.
|
5
6
|
|
6
7
|
[![Continuous Integration status](https://secure.travis-ci.org/travis-ci/travis-lint.png)](http://travis-ci.org/travis-ci/travis-lint)
|
7
8
|
|
data/lib/travis/lint/linter.rb
CHANGED
@@ -83,7 +83,7 @@ module Travis
|
|
83
83
|
|
84
84
|
|
85
85
|
KNOWN_RUBY_VERSIONS = %w(1.8.7 ruby-1.8.7 1.9.2 ruby-1.9.2 1.9.3 ruby-1.9.3 2.0.0 ruby-2.0.0 ruby-head jruby jruby-18mode jruby-19mode rbx rbx-18mode rbx-19mode jruby-head ree ree-1.8.7)
|
86
|
-
KNOWN_NODE_VERSIONS = %w(0.6 0.8 0.9)
|
86
|
+
KNOWN_NODE_VERSIONS = %w(0.6 0.8 0.9 0.10 0.11)
|
87
87
|
KNOWN_PHP_VERSIONS = %w(5.2 5.3 5.3.3 5.4 5.5)
|
88
88
|
|
89
89
|
KNOWN_PYTHON_VERSIONS = %w(2.5 2.6 2.7 3.2 3.3 pypy)
|
data/lib/travis/lint/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: travis-lint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-04-17 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: hashr
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
version: '0'
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project:
|
104
|
-
rubygems_version: 1.8.
|
104
|
+
rubygems_version: 1.8.25
|
105
105
|
signing_key:
|
106
106
|
specification_version: 3
|
107
107
|
summary: Checks your .travis.yml for possible issues, deprecations and so on
|