librarian-puppet 0.9.17 → 1.0.0

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 CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 1d16a4da2a57cd2d159e70dc1da73c426204d844
4
- data.tar.gz: 081d255b926b856544a03bcb1dd403dac0ce4a79
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NjU3NTQyOTU1MGVhOGM2YTllMWFkZjMyNTExNTQ4YmZjOTcyYzNhYQ==
5
+ data.tar.gz: !binary |-
6
+ ZmExNmU0MmZmYmMxMTkyNzY2ZTRiNjA1ODNkMWY4NGE3NWVhNjk2OQ==
5
7
  SHA512:
6
- metadata.gz: 2440aa8679dc429a0f2d9dfc16240ddfe33d5c7f99f4947849f07ae34512b7aebc20212c65ea6ca11d0c1f715a5fec5856962740212b3cb5cac82219e161e36b
7
- data.tar.gz: 8c093ea6ff3123cf20f22cbdd6beba35eadc6adcf07e43700770b71acc4cdcc1554d2bdf008edcc0bc938c9a897015aa6e54c95e16251ace352fada854eb21af
8
+ metadata.gz: !binary |-
9
+ YTljOThjZDE3MDhiYWU5M2U1M2M1MTRiNjk2ZDFlYzcyYWZlM2ZmZmUwNDA3
10
+ MTMxZDIzMWNlMjUxNjM2ZDRiNWM0MTRjZjljMDViZjZhMDMyNTI0MGE4YTYy
11
+ MTNkZjBkOWFjMzA2ZjBmZmY0Yjk0OGZlY2RkMjk5OTcwY2QzYjE=
12
+ data.tar.gz: !binary |-
13
+ MTI3ZGVhM2ZhYjg2ZjYyMDI4OTM1OTQ1ODc5NjBhNDYzODhjNjRiYzBhNjU3
14
+ NGNlOTQ5N2RiYmYzZGJiNGRmMmY5MTg5YTEyODVjMTAzMTFmZTMyY2E1ZTNh
15
+ YjRjYzVlOTZhMGUxMzhmMmQwOGNhMWJlYTVjM2ZiNGM5MmVmMjI=
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Tim Sharpe
1
+ Copyright (c) 2012-2014 Tim Sharpe, Carlos Sanchez and others
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -5,10 +5,16 @@
5
5
  ## Introduction
6
6
 
7
7
  Librarian-puppet is a bundler for your puppet infrastructure. You can use
8
- librarian-puppet to manage the puppet modules your infrastructure depends on.
9
- It is based on [Librarian](https://github.com/applicationsonline/librarian), a
10
- framework for writing bundlers, which are tools that resolve, fetch, install,
11
- and isolate a project's dependencies.
8
+ librarian-puppet to manage the puppet modules your infrastructure depends on,
9
+ whether the modules come from the [Puppet Forge](http://forge.puppetlabs.com/),
10
+ Git repositories or a just a path.
11
+
12
+ * Librarian-puppet can reuse the dependencies listed in your Modulefile
13
+ * Forge modules can be installed from [Puppetlabs Forge](http://forge.puppetlabs.com/) or an internal Forge such as [Pulp](http://www.pulpproject.org/)
14
+ * Git modules can be installed from a branch, tag or specific commit, optionally using a path inside the repository
15
+ * Modules can be installed from GitHub using tarballs, without needing Git installed
16
+ * Module dependencies are resolved transitively without needing to list all the modules explicitly
17
+
12
18
 
13
19
  Librarian-puppet manages your `modules/` directory for you based on your
14
20
  `Puppetfile`. Your `Puppetfile` becomes the authoritative source for what
@@ -18,6 +24,10 @@ Once using Librarian-puppet you should not modify the contents of your `modules`
18
24
  directory. The individual modules' repos should be updated, tagged with a new
19
25
  release and the version bumped in your Puppetfile.
20
26
 
27
+ It is based on [Librarian](https://github.com/applicationsonline/librarian), a
28
+ framework for writing bundlers, which are tools that resolve, fetch, install,
29
+ and isolate a project's dependencies.
30
+
21
31
  ## The Puppetfile
22
32
 
23
33
  Every Puppet repository that uses Librarian-puppet will have a file named
@@ -46,10 +56,11 @@ This Puppetfile will download all the dependencies listed in your Modulefile fro
46
56
  mod "puppetlabs/stdlib",
47
57
  :git => "git://github.com/puppetlabs/puppetlabs-stdlib.git"
48
58
 
49
- *See [jenkins-appliance](https://github.com/aussielunix/jenkins-appliance) for
50
- a puppet repo already setup to use librarian-puppet.*
59
+ mod 'puppetlabs/apache', '0.6.0',
60
+ :github_tarball => 'puppetlabs/puppetlabs-apache'
61
+
51
62
 
52
- ### Recursive module dependency resolving
63
+ ### Recursive module dependency resolution
53
64
 
54
65
  When fetching a module all dependencies specified in its
55
66
  `Modulefile` and `Puppetfile` will be resolved and installed.
@@ -22,7 +22,6 @@ module Librarian
22
22
  def initialize(source, name)
23
23
  self.source = source
24
24
  self.name = name
25
- warn { "githubtarball sources are deprecated: #{name} [#{source}]" }
26
25
  end
27
26
 
28
27
  def versions
@@ -1,5 +1,5 @@
1
1
  module Librarian
2
2
  module Puppet
3
- VERSION = "0.9.17"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,111 +1,111 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: librarian-puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.17
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Sharpe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-04 00:00:00.000000000 Z
11
+ date: 2014-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: librarian
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.1.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.1.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ! '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: cucumber
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ! '>='
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ! '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: aruba
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '>='
87
+ - - ! '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '>='
94
+ - - ! '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: puppet
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - '>='
101
+ - - ! '>='
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - '>='
108
+ - - ! '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
@@ -126,20 +126,18 @@ dependencies:
126
126
  name: mocha
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - '>='
129
+ - - ! '>='
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - '>='
136
+ - - ! '>='
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
- description: |-
140
- Simplify deployment of your Puppet infrastructure by
141
- automatically pulling in modules from the forge and git repositories with
142
- a single command.
139
+ description: ! "Simplify deployment of your Puppet infrastructure by\n automatically
140
+ pulling in modules from the forge and git repositories with\n a single command."
143
141
  email:
144
142
  - tim@sharpe.id.au
145
143
  executables:
@@ -177,12 +175,12 @@ require_paths:
177
175
  - lib
178
176
  required_ruby_version: !ruby/object:Gem::Requirement
179
177
  requirements:
180
- - - '>='
178
+ - - ! '>='
181
179
  - !ruby/object:Gem::Version
182
180
  version: '0'
183
181
  required_rubygems_version: !ruby/object:Gem::Requirement
184
182
  requirements:
185
- - - '>='
183
+ - - ! '>='
186
184
  - !ruby/object:Gem::Version
187
185
  version: '0'
188
186
  requirements: []