travis 1.6.3.travis.374.4 → 1.6.3.travis.376.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 +15 -1
- data/Rakefile +1 -0
- data/lib/travis/cli/setup.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjA3MzlkNWU4NmVkNWY2YzQzMjVjNmExYjhlYjJkNDg3NDBhZGM2OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWI1Yzg0NmRjYTVkMWVhMTI5ODIzOTdkYzA2ZGQzMDYxYjYwYWUwYQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGZhNDIxMzQ3MDY3YjVlMmIyYWVlYzhhMmEzMmEwMjQxMGM2OTk2MDgxMzAy
|
10
|
+
NmZjMTAxYzkwOWZlZjA2MWVjYThlNzVlMTAyZTFjOWRhODdkMWY5YjlmODNi
|
11
|
+
NjgyYzc1MzQ1MmYwMWJiZjE4NDAxM2M1MDY3MDYyMGVmNjRiOTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZWZjM2Q1ODA3MDYyN2EwYWFmNzY5Yzk2N2Q5NjEwNzJhNjE3ZGZhYTZiMGZj
|
14
|
+
YTk4MzkwOWI1NTU0NGZhNzY3ZjU2ZDZjMTMyODQ0NmM2MTgwZDIxY2JkNGNk
|
15
|
+
MjY2Njg5NWMxNDhhNGVlOTBjMmQ1YjRjOTRhMDhlOTk4OWI5OWU=
|
data/README.md
CHANGED
@@ -40,6 +40,7 @@ The [travis gem](https://rubygems.org/gems/travis) includes both a [command line
|
|
40
40
|
* [`status`](#status)
|
41
41
|
* [Pro and Enterprise](#pro-and-enterprise)
|
42
42
|
* [Environment Variables](#environment-variables)
|
43
|
+
* [Desktop Notifications](#desktop-notifications)
|
43
44
|
* [Ruby Library](#ruby-library)
|
44
45
|
* [Authentication](#authentication)
|
45
46
|
* [Using Pro](#using-pro)
|
@@ -242,7 +243,7 @@ By default, you will receive events for both builds and jobs, you can limit it t
|
|
242
243
|
|
243
244
|
Similarly, you can limit it to builds/jobs for pull requests via `--pull` and for normal pushes via `--push`.
|
244
245
|
|
245
|
-
The monitor command can also send out desktop notifications
|
246
|
+
The monitor command can also send out [desktop notifications](#desktop-notifications):
|
246
247
|
|
247
248
|
$ travis monitor --pro -n
|
248
249
|
Monitoring travis-ci.com:
|
@@ -924,6 +925,14 @@ You can set the following environment variables to influence the travis behavior
|
|
924
925
|
* `$TRAVIS_ENDPOINT` - API endpoint to use when the `--api-endpoint`, `--org` or `--pro` flag is not used
|
925
926
|
* `$TRAVIS_CONFIG_PATH` - directory to store configuration in (defaults to ~/.travis)
|
926
927
|
|
928
|
+
### Desktop Notifications
|
929
|
+
|
930
|
+
Some commands support sending desktop notifications. The following notification systems are currently supported:
|
931
|
+
|
932
|
+
* **Notification Center** - requires Mac OSX 10.8 or later and [Notification Center](http://support.apple.com/kb/ht5362) must be running under the system executing the `travis` command.
|
933
|
+
* **Growl** - [growlnotify](http://growl.info/downloads#generaldownloads) has to be installed and [Growl](https://itunes.apple.com/us/app/growl/id467939042?mt=12&ign-mpt=uo%3D4) needs to be running. Does currently not support the Windows version of Growl.
|
934
|
+
* **libnotify** - needs [libnotify](http://www.linuxfromscratch.org/blfs/view/svn/x/libnotify.html) installed, including the `notify-send` executable.
|
935
|
+
|
927
936
|
## Ruby Library
|
928
937
|
|
929
938
|
There are two approaches of using the Ruby library, one straight forward with one global session:
|
@@ -1429,6 +1438,11 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
1429
1438
|
|
1430
1439
|
## Version History
|
1431
1440
|
|
1441
|
+
**1.6.3** (not yet released)
|
1442
|
+
|
1443
|
+
* Check if Notification Center or Growl is actually running before sending out notifications.
|
1444
|
+
* Better documentation for desktop notifications.
|
1445
|
+
|
1432
1446
|
**1.6.2** (November 8, 2013)
|
1433
1447
|
|
1434
1448
|
* Remove worker support, as API endpoints have been removed from Travis CI.
|
data/Rakefile
CHANGED
@@ -40,6 +40,7 @@ task :update => :completion do
|
|
40
40
|
readme = File.read('README.md').b
|
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
|
+
readme.gsub! /^\*\*#{Regexp.escape(Travis::VERSION)}\*\* \(not yet released?\)\n/i, "**#{Travis::VERSION}** (#{Time.now.strftime("%B %-d, %Y")})\n"
|
43
44
|
File.write('README.md', readme)
|
44
45
|
end
|
45
46
|
|
data/lib/travis/cli/setup.rb
CHANGED
@@ -14,6 +14,7 @@ module Travis
|
|
14
14
|
autoload :PyPI, 'travis/cli/setup/pypi'
|
15
15
|
autoload :RubyGems, 'travis/cli/setup/ruby_gems'
|
16
16
|
autoload :S3, 'travis/cli/setup/s3'
|
17
|
+
autoload :CloudFiles, 'travis/cli/setup/cloud_files'
|
17
18
|
autoload :SauceConnect, 'travis/cli/setup/sauce_connect'
|
18
19
|
autoload :Service, 'travis/cli/setup/service'
|
19
20
|
|
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.3.travis.
|
4
|
+
version: 1.6.3.travis.376.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -28,7 +28,7 @@ authors:
|
|
28
28
|
autorequire:
|
29
29
|
bindir: bin
|
30
30
|
cert_chain: []
|
31
|
-
date: 2013-11-
|
31
|
+
date: 2013-11-11 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: faraday
|