travis-cron_tools 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +6 -0
- data/bin/console +1 -1
- data/lib/travis-cron_tools/contrib/find_images_in_k8s_manifest.rb +1 -0
- data/lib/travis-cron_tools/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea120f10a54c2e374e0960852b8562d7d2eadd41
|
4
|
+
data.tar.gz: 5c15a896fc3ef7e2e091253d2f0b59b23f52d838
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9c33cf6906e55dd6ed439133f9709050474684fada646d9000227ae5a8b8aa821ec59f5f2ca238fe2107e6c617056c10f41968eeddfa75d423815e170afb5da
|
7
|
+
data.tar.gz: 6994597f15f93d306c857e76e0664a5f3ce9e5dd5127a2935b3a3e382d0136f79c3ac95e084f80e1d2d421a600c2ae4c5f9e22f87dffef7499bddbff938de831
|
data/.travis.yml
ADDED
data/bin/console
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require "bundler/setup"
|
4
|
-
require "
|
4
|
+
require "travis-cron_tools"
|
5
5
|
|
6
6
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
7
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -12,6 +12,7 @@ module Travis
|
|
12
12
|
|
13
13
|
# Extract the image name, and append ':latest', unless a tag has already been provided.
|
14
14
|
images += yaml_parts\
|
15
|
+
.select { |part| !! part } \
|
15
16
|
.select { |part| part["kind"] == "Deployment" }\
|
16
17
|
.map { |part| part["spec"]["template"]["spec"]["containers"].map { |c| c["image"] } }.flatten\
|
17
18
|
.map { |name| if name.include?(":") then name; else name + ":latest"; end }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: travis-cron_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maarten Hoogendoorn
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -62,6 +62,7 @@ extensions: []
|
|
62
62
|
extra_rdoc_files: []
|
63
63
|
files:
|
64
64
|
- ".gitignore"
|
65
|
+
- ".travis.yml"
|
65
66
|
- CODE_OF_CONDUCT.md
|
66
67
|
- Gemfile
|
67
68
|
- LICENSE.txt
|