cookbook-omnifetch 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cookbook-omnifetch.rb +11 -11
- data/lib/cookbook-omnifetch/artifactory.rb +1 -1
- data/lib/cookbook-omnifetch/artifactserver.rb +1 -1
- data/lib/cookbook-omnifetch/base.rb +1 -1
- data/lib/cookbook-omnifetch/chef_server.rb +2 -2
- data/lib/cookbook-omnifetch/chef_server_artifact.rb +2 -2
- data/lib/cookbook-omnifetch/git.rb +3 -3
- data/lib/cookbook-omnifetch/integration.rb +1 -1
- data/lib/cookbook-omnifetch/metadata_based_installer.rb +1 -1
- data/lib/cookbook-omnifetch/path.rb +1 -1
- data/lib/cookbook-omnifetch/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12f28e7041aa5bc8b84a9166484c64ac4c6f02f8f43708fdada9a2e71924bed9
|
4
|
+
data.tar.gz: 57354bb30e3da2dd697522011a9657f476b88036f19e9b60711f0f05d6ee5235
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35e4238d564b6073bc7fcc1130b165e911700c3edd783695e19a67d1c2e80117ec0b2166ace9a26b33faad917fc03eb2c16e46c72fc544fc48e2197cc1d541fa
|
7
|
+
data.tar.gz: 83fa51394f10feebd6575625d20564373d2ce713b0efdfffbf90f17e0fd77d07086da5f089b880ea38255735e50d64a3d1eba2269b7bab5373e21d230f115a81
|
data/lib/cookbook-omnifetch.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
require_relative "cookbook-omnifetch/version"
|
2
|
+
require_relative "cookbook-omnifetch/integration"
|
3
|
+
|
4
|
+
require_relative "cookbook-omnifetch/base"
|
5
|
+
require_relative "cookbook-omnifetch/git"
|
6
|
+
require_relative "cookbook-omnifetch/github"
|
7
|
+
require_relative "cookbook-omnifetch/path"
|
8
|
+
require_relative "cookbook-omnifetch/artifactserver"
|
9
|
+
require_relative "cookbook-omnifetch/artifactory"
|
10
|
+
require_relative "cookbook-omnifetch/chef_server"
|
11
|
+
require_relative "cookbook-omnifetch/chef_server_artifact"
|
12
12
|
|
13
13
|
module CookbookOmnifetch
|
14
14
|
|
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
require_relative "base"
|
2
|
+
require_relative "metadata_based_installer"
|
3
3
|
|
4
4
|
module CookbookOmnifetch
|
5
5
|
# This location allows fetching from the `cookbook_artifacts/` API where Chef
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require "tmpdir"
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
require_relative "../cookbook-omnifetch"
|
3
|
+
require_relative "base"
|
4
|
+
require_relative "exceptions"
|
5
5
|
|
6
6
|
module CookbookOmnifetch
|
7
7
|
class GitLocation < BaseLocation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cookbook-omnifetch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date: 2019-
|
16
|
+
date: 2019-12-30 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: mixlib-archive
|