travis 1.6.6.travis.417.4 → 1.6.6.travis.419.4
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 +8 -8
- data/README.md +30 -30
- data/Rakefile +5 -0
- data/travis.gemspec +0 -1
- metadata +1 -15
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGFmZmZiNzRjYWFiODA2YTE1MGUxNmQ5NjIzYmQ4ZjU3YzA5NDczMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGIzMDk0OTZjZmVmNWE5NWI1ZTBmNTA5NGFjYjU3NzU0MzFlMTdmMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjEzNjg3ZmRkMWZiZDE4MmM0NGM5OWQwMjljM2E4YTJjYmI3ZTRkODlmYjli
|
10
|
+
ZmY2OTNiYWViMjVmYTIyZTg2MWMwNDllZTYxYjI4NzFkZjdhMGUyNDJhMTYw
|
11
|
+
ZGUwODM1YzE1YWVjMDFlYTQzYTdlYjdlNGQxYjNjNmQ4ZTExYjM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDNiNDg1MGUxOTk3ZDE4M2JmNTIyNmQ3YmU2Y2U2N2UwM2E5NDQwMjFmMDZm
|
14
|
+
YzEyZDIxODE2ODYxMjQ2MDczNWQ5YjY5OTUyYTU3MTc0ZWE2MTE5YjA0YzYy
|
15
|
+
NjMwODA0ZjE5ZTE5NThhY2QwNzYyYjIyODkxM2U5MTYzOTkzOWU=
|
data/README.md
CHANGED
@@ -8,38 +8,38 @@ The [travis gem](https://rubygems.org/gems/travis) includes both a [command line
|
|
8
8
|
|
9
9
|
* [Command Line Client](#command-line-client)
|
10
10
|
* [Non-API Commands](#non-api-commands)
|
11
|
-
* [`help`](#help)
|
12
|
-
* [`version`](#version)
|
11
|
+
* [`help`](#help) - helps you out when in dire need of information
|
12
|
+
* [`version`](#version) - outputs the client version
|
13
13
|
* [General API Commands](#general-api-commands)
|
14
|
-
* [`accounts`](#accounts)
|
15
|
-
* [`console`](#console)
|
16
|
-
* [`endpoint`](#endpoint)
|
17
|
-
* [`login`](#login)
|
18
|
-
* [`monitor`](#monitor)
|
19
|
-
* [`raw`](#raw)
|
20
|
-
* [`report`](#report)
|
21
|
-
* [`repos`](#repos)
|
22
|
-
* [`sync`](#sync)
|
23
|
-
* [`token`](#token)
|
24
|
-
* [`whatsup`](#whatsup)
|
25
|
-
* [`whoami`](#whoami)
|
14
|
+
* [`accounts`](#accounts) - displays accounts and their subscription status
|
15
|
+
* [`console`](#console) - interactive shell
|
16
|
+
* [`endpoint`](#endpoint) - displays or changes the API endpoint
|
17
|
+
* [`login`](#login) - authenticates against the API and stores the token
|
18
|
+
* [`monitor`](#monitor) - live monitor for what's going on
|
19
|
+
* [`raw`](#raw) - makes an (authenticated) API call and prints out the result
|
20
|
+
* [`report`](#report) - generates a report useful for filing issues
|
21
|
+
* [`repos`](#repos) - lists repositories the user has certain permissions on
|
22
|
+
* [`sync`](#sync) - triggers a new sync with GitHub
|
23
|
+
* [`token`](#token) - outputs the secret API token
|
24
|
+
* [`whatsup`](#whatsup) - lists most recent builds
|
25
|
+
* [`whoami`](#whoami) - outputs the current user
|
26
26
|
* [Repository Commands](#repository-commands)
|
27
|
-
* [`branches`](#branches)
|
28
|
-
* [`cache`](#cache)
|
29
|
-
* [`cancel`](#cancel)
|
30
|
-
* [`disable`](#disable)
|
31
|
-
* [`enable`](#enable)
|
32
|
-
* [`encrypt`](#encrypt)
|
33
|
-
* [`history`](#history)
|
34
|
-
* [`init`](#init)
|
35
|
-
* [`logs`](#logs)
|
36
|
-
* [`open`](#open)
|
37
|
-
* [`pubkey`](#pubkey)
|
38
|
-
* [`restart`](#restart)
|
39
|
-
* [`settings`](#settings)
|
40
|
-
* [`setup`](#setup)
|
41
|
-
* [`show`](#show)
|
42
|
-
* [`status`](#status)
|
27
|
+
* [`branches`](#branches) - displays the most recent build for each branch
|
28
|
+
* [`cache`](#cache) - lists or deletes repository caches
|
29
|
+
* [`cancel`](#cancel) - cancels a job or build
|
30
|
+
* [`disable`](#disable) - disables a project
|
31
|
+
* [`enable`](#enable) - enables a project
|
32
|
+
* [`encrypt`](#encrypt) - encrypts values for the .travis.yml
|
33
|
+
* [`history`](#history) - displays a projects build history
|
34
|
+
* [`init`](#init) - generates a .travis.yml and enables the project
|
35
|
+
* [`logs`](#logs) - streams test logs
|
36
|
+
* [`open`](#open) - opens a build or job in the browser
|
37
|
+
* [`pubkey`](#pubkey) - prints out a repository's public key
|
38
|
+
* [`restart`](#restart) - restarts a build or job
|
39
|
+
* [`settings`](#settings) - access repository settings
|
40
|
+
* [`setup`](#setup) - sets up an addon or deploy target
|
41
|
+
* [`show`](#show) - displays a build or job
|
42
|
+
* [`status`](#status) - checks status of the latest build
|
43
43
|
* [Pro and Enterprise](#pro-and-enterprise)
|
44
44
|
* [Environment Variables](#environment-variables)
|
45
45
|
* [Desktop Notifications](#desktop-notifications)
|
data/Rakefile
CHANGED
@@ -41,6 +41,11 @@ task :update => :completion do
|
|
41
41
|
readme.gsub! /^(\s+\$ travis version\n\s+).*$/, "\\1#{Travis::VERSION}"
|
42
42
|
readme.gsub! /(gem install travis -v )\S+/, "\\1#{Travis::VERSION}"
|
43
43
|
readme.gsub! /^\*\*#{Regexp.escape(Travis::VERSION)}\*\* \(not yet released?\)\n/i, "**#{Travis::VERSION}** (#{Time.now.strftime("%B %-d, %Y")})\n"
|
44
|
+
|
45
|
+
Travis::CLI.commands.each do |c|
|
46
|
+
readme.sub! /^( \* \[\`#{c.command_name}\`\]\(##{c.command_name}\)).*$/, "\\1 - #{c.description}"
|
47
|
+
end
|
48
|
+
|
44
49
|
File.write('README.md', readme)
|
45
50
|
end
|
46
51
|
|
data/travis.gemspec
CHANGED
@@ -223,7 +223,6 @@ Gem::Specification.new do |s|
|
|
223
223
|
s.add_dependency "faraday", "~> 0.8.7" # FIXME
|
224
224
|
s.add_dependency "faraday_middleware", "~> 0.9"
|
225
225
|
s.add_dependency "highline", "~> 1.6"
|
226
|
-
s.add_dependency "netrc", "~> 0.7"
|
227
226
|
s.add_dependency "backports"
|
228
227
|
s.add_dependency "gh", "~> 0.13"
|
229
228
|
s.add_dependency "launchy", "~> 2.1"
|
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.travis.
|
4
|
+
version: 1.6.6.travis.419.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -74,20 +74,6 @@ dependencies:
|
|
74
74
|
- - ~>
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '1.6'
|
77
|
-
- !ruby/object:Gem::Dependency
|
78
|
-
name: netrc
|
79
|
-
requirement: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - ~>
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '0.7'
|
84
|
-
type: :runtime
|
85
|
-
prerelease: false
|
86
|
-
version_requirements: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - ~>
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '0.7'
|
91
77
|
- !ruby/object:Gem::Dependency
|
92
78
|
name: backports
|
93
79
|
requirement: !ruby/object:Gem::Requirement
|