travis 1.6.6.travis.419.4 → 1.6.6
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 +5 -13
- data/README.md +6 -2
- data/lib/travis/cli/login.rb +2 -0
- data/lib/travis/version.rb +1 -1
- data/travis.gemspec +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
MGIzMDk0OTZjZmVmNWE5NWI1ZTBmNTA5NGFjYjU3NzU0MzFlMTdmMQ==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 790669b33f8cee0d87d4229469a06144d0ad6562
|
|
4
|
+
data.tar.gz: 70fc22783fcb4dbe85956d79fe964051c91509e1
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
ZmY2OTNiYWViMjVmYTIyZTg2MWMwNDllZTYxYjI4NzFkZjdhMGUyNDJhMTYw
|
|
11
|
-
ZGUwODM1YzE1YWVjMDFlYTQzYTdlYjdlNGQxYjNjNmQ4ZTExYjM=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
ZDNiNDg1MGUxOTk3ZDE4M2JmNTIyNmQ3YmU2Y2U2N2UwM2E5NDQwMjFmMDZm
|
|
14
|
-
YzEyZDIxODE2ODYxMjQ2MDczNWQ5YjY5OTUyYTU3MTc0ZWE2MTE5YjA0YzYy
|
|
15
|
-
NjMwODA0ZjE5ZTE5NThhY2QwNzYyYjIyODkxM2U5MTYzOTkzOWU=
|
|
6
|
+
metadata.gz: b49c1217bd430ac7a3160ee9490ef3cfde52ad41ad47d47f863e60180d51c6a6d3a2a0622dfaf4ad4f022ff81ea742dd3b4b105de7e5675d1e9bb6401ebcfa1a
|
|
7
|
+
data.tar.gz: ad3ff3e2b5e6af7cf0d5df531a2c100881650e106de317dfb0370b982ca66497ad28d07a60c5d3b48c37740d266fe2df103242e9caff108d0f35e000e774c520
|
data/README.md
CHANGED
|
@@ -1495,12 +1495,12 @@ You can check your Ruby version by running `ruby -v`:
|
|
|
1495
1495
|
|
|
1496
1496
|
Then run:
|
|
1497
1497
|
|
|
1498
|
-
$ gem install travis -v 1.6.
|
|
1498
|
+
$ gem install travis -v 1.6.6 --no-rdoc --no-ri
|
|
1499
1499
|
|
|
1500
1500
|
Now make sure everything is working:
|
|
1501
1501
|
|
|
1502
1502
|
$ travis version
|
|
1503
|
-
1.6.
|
|
1503
|
+
1.6.6
|
|
1504
1504
|
|
|
1505
1505
|
### Development Version
|
|
1506
1506
|
|
|
@@ -1555,6 +1555,10 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
|
1555
1555
|
|
|
1556
1556
|
## Version History
|
|
1557
1557
|
|
|
1558
|
+
**1.6.6** (December 16, 2013)
|
|
1559
|
+
|
|
1560
|
+
* Fix `travis login --pro` for new users.
|
|
1561
|
+
|
|
1558
1562
|
**1.6.5** (December 16, 2013)
|
|
1559
1563
|
|
|
1560
1564
|
* Add `travis settings` command for accessing repository settings.
|
data/lib/travis/cli/login.rb
CHANGED
|
@@ -5,6 +5,8 @@ require 'json'
|
|
|
5
5
|
module Travis
|
|
6
6
|
module CLI
|
|
7
7
|
class Login < ApiCommand
|
|
8
|
+
skip :authenticate
|
|
9
|
+
|
|
8
10
|
description "authenticates against the API and stores the token"
|
|
9
11
|
on('-g', '--github-token TOKEN', 'identify by GitHub token')
|
|
10
12
|
on('-T', '--auto-token', 'try to figure out who you are automatically (might send another apps token to Travis, token will not be stored)')
|
data/lib/travis/version.rb
CHANGED
data/travis.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: travis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.6
|
|
4
|
+
version: 1.6.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
@@ -78,14 +78,14 @@ dependencies:
|
|
|
78
78
|
name: backports
|
|
79
79
|
requirement: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
|
-
- -
|
|
81
|
+
- - '>='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
83
|
version: '0'
|
|
84
84
|
type: :runtime
|
|
85
85
|
prerelease: false
|
|
86
86
|
version_requirements: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
|
88
|
-
- -
|
|
88
|
+
- - '>='
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
90
|
version: '0'
|
|
91
91
|
- !ruby/object:Gem::Dependency
|
|
@@ -406,18 +406,19 @@ require_paths:
|
|
|
406
406
|
- lib
|
|
407
407
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
408
408
|
requirements:
|
|
409
|
-
- -
|
|
409
|
+
- - '>='
|
|
410
410
|
- !ruby/object:Gem::Version
|
|
411
411
|
version: '0'
|
|
412
412
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
413
413
|
requirements:
|
|
414
|
-
- -
|
|
414
|
+
- - '>='
|
|
415
415
|
- !ruby/object:Gem::Version
|
|
416
|
-
version:
|
|
416
|
+
version: '0'
|
|
417
417
|
requirements: []
|
|
418
418
|
rubyforge_project:
|
|
419
|
-
rubygems_version: 2.
|
|
419
|
+
rubygems_version: 2.0.7
|
|
420
420
|
signing_key:
|
|
421
421
|
specification_version: 4
|
|
422
422
|
summary: Travis CI client
|
|
423
423
|
test_files: []
|
|
424
|
+
has_rdoc:
|