librarian-chef 0.0.3 → 0.0.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +4 -4
- data/lib/librarian/chef/source/site.rb +1 -0
- data/lib/librarian/chef/templates/Cheffile +1 -1
- data/lib/librarian/chef/version.rb +1 -1
- data/spec/functional/chef/source/site_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e892d9247cd87153e65af8e371ce8090a5269a3d
|
4
|
+
data.tar.gz: 22db4574b0ca5269081c51f153f8fa9622a3e8c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eed5c1f0206bc76450683a1f82f6130e8cdb627563ab776546f28ae85b7631c90122da6293fe086d01bd5206baff58fbad2330791c0c5997d65fa7b45ec5cc77
|
7
|
+
data.tar.gz: e832af7f099e834b6f39b393ab234b7f07155fb849d23ca0dd11b124d47978abe221a63723010d34b55d198989e655587c5c304a00aaef816597a0351e78e097
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -42,7 +42,7 @@ depends will go here.
|
|
42
42
|
|
43
43
|
Here's an example `Cheffile`:
|
44
44
|
|
45
|
-
site "
|
45
|
+
site "https://supermarket.getchef.com/api/v1"
|
46
46
|
|
47
47
|
cookbook "ntp"
|
48
48
|
cookbook "timezone", "0.0.1"
|
@@ -58,7 +58,7 @@ Here's how it works:
|
|
58
58
|
|
59
59
|
We start off by declaring the *default source* for this `Cheffile`.
|
60
60
|
|
61
|
-
site "
|
61
|
+
site "https://supermarket.getchef.com/api/v1"
|
62
62
|
|
63
63
|
This default source in this example is the Opscode Community Site API. This is
|
64
64
|
most likely what you will want for your default source. However, you can
|
@@ -161,7 +161,7 @@ default source.
|
|
161
161
|
Add dependencies and their sources to the `Cheffile`:
|
162
162
|
|
163
163
|
$ cat Cheffile
|
164
|
-
site '
|
164
|
+
site 'https://supermarket.getchef.com/api/v1'
|
165
165
|
cookbook 'ntp'
|
166
166
|
cookbook 'timezone', '0.0.1'
|
167
167
|
cookbook 'rvm',
|
@@ -211,7 +211,7 @@ Inspect the details of specific resolved dependencies with:
|
|
211
211
|
Update your `Cheffile` with new/changed/removed constraints/sources/dependencies:
|
212
212
|
|
213
213
|
$ cat Cheffile
|
214
|
-
site '
|
214
|
+
site 'https://supermarket.getchef.com/api/v1'
|
215
215
|
cookbook 'ntp'
|
216
216
|
cookbook 'timezone', '0.0.1'
|
217
217
|
cookbook 'rvm',
|
@@ -118,7 +118,7 @@ module Librarian
|
|
118
118
|
describe "#manifests" do
|
119
119
|
it "gives a list of all manifests" do
|
120
120
|
manifests = source.manifests("sample")
|
121
|
-
manifests.should
|
121
|
+
manifests.size.should == 1
|
122
122
|
manifest = manifests.first
|
123
123
|
manifest.source.should be source
|
124
124
|
manifest.version.should == Manifest::Version.new("0.6.5")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: librarian-chef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Feldblum
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: librarian
|