chef-server-api 10.16.4 → 10.16.6.rc.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.
- data/Rakefile +3 -3
- data/lib/chef-server-api/version.rb +1 -1
- metadata +50 -35
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/lib/chef-server-api/version'
|
2
2
|
|
3
3
|
require 'rubygems'
|
4
|
-
require '
|
4
|
+
require 'rubygems/package_task'
|
5
5
|
|
6
6
|
begin
|
7
7
|
require 'merb-core'
|
@@ -12,9 +12,9 @@ end
|
|
12
12
|
|
13
13
|
GEM_NAME = "chef-server-api"
|
14
14
|
|
15
|
-
spec = eval(File.read("chef-server-api.gemspec"))
|
15
|
+
spec = eval(File.read("chef-server-api.gemspec"), nil, "chef-server-api.gemspec", 1)
|
16
16
|
|
17
|
-
|
17
|
+
Gem::PackageTask.new(spec) do |pkg|
|
18
18
|
pkg.gem_spec = spec
|
19
19
|
end
|
20
20
|
|
metadata
CHANGED
@@ -1,16 +1,32 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-server-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 10.16.
|
5
|
-
prerelease:
|
4
|
+
version: 10.16.6.rc.0
|
5
|
+
prerelease: 8
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Opscode
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-01-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: extlib
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.9.16
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.9.16
|
14
30
|
- !ruby/object:Gem::Dependency
|
15
31
|
name: merb-core
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,59 +170,58 @@ files:
|
|
154
170
|
- LICENSE
|
155
171
|
- README.rdoc
|
156
172
|
- Rakefile
|
157
|
-
- config/init.rb
|
158
173
|
- config/environments/development.rb
|
159
|
-
- config/
|
174
|
+
- config/init.rb
|
160
175
|
- config/rack.rb
|
161
|
-
-
|
176
|
+
- config/router.rb
|
162
177
|
- lib/chef-server-api/version.rb
|
163
|
-
-
|
164
|
-
- spec/
|
165
|
-
- spec/
|
178
|
+
- lib/chef-server-api.rb
|
179
|
+
- spec/spec.opts
|
180
|
+
- spec/spec_helper.rb
|
181
|
+
- spec/spec_model_helper.rb
|
166
182
|
- spec/unit/clients_controller_spec.rb
|
167
183
|
- spec/unit/cookbooks_controller_spec.rb
|
168
184
|
- spec/unit/environments_controller_spec.rb
|
169
|
-
- spec/
|
170
|
-
- spec/
|
171
|
-
- spec/
|
172
|
-
- app/controllers/roles.rb
|
185
|
+
- spec/unit/nodes_controller_environments_spec.rb
|
186
|
+
- spec/unit/nodes_controller_spec.rb
|
187
|
+
- spec/unit/sandbox_file_spec.rb
|
173
188
|
- app/controllers/application.rb
|
189
|
+
- app/controllers/clients.rb
|
174
190
|
- app/controllers/cookbooks.rb
|
175
|
-
- app/controllers/
|
191
|
+
- app/controllers/data_bags.rb
|
176
192
|
- app/controllers/data_item.rb
|
193
|
+
- app/controllers/environments.rb
|
177
194
|
- app/controllers/exceptions.rb
|
195
|
+
- app/controllers/main.rb
|
178
196
|
- app/controllers/nodes.rb
|
179
|
-
- app/controllers/
|
180
|
-
- app/controllers/users.rb
|
181
|
-
- app/controllers/clients.rb
|
182
|
-
- app/controllers/data_bags.rb
|
183
|
-
- app/controllers/search.rb
|
197
|
+
- app/controllers/roles.rb
|
184
198
|
- app/controllers/sandboxes.rb
|
199
|
+
- app/controllers/search.rb
|
200
|
+
- app/controllers/users.rb
|
201
|
+
- app/helpers/cookbook_version_helper.rb
|
202
|
+
- app/helpers/tarball_helper.rb
|
185
203
|
- app/models/sandbox_file.rb
|
186
|
-
- app/views/main/index.html.erb
|
187
|
-
- app/views/exceptions/standard_error.html.erb
|
188
|
-
- app/views/exceptions/internal_server_error.html.erb
|
189
|
-
- app/views/exceptions/not_found.html.erb
|
190
204
|
- app/views/exceptions/bad_request.json.erb
|
205
|
+
- app/views/exceptions/internal_server_error.html.erb
|
191
206
|
- app/views/exceptions/not_acceptable.html.haml
|
207
|
+
- app/views/exceptions/not_found.html.erb
|
208
|
+
- app/views/exceptions/standard_error.html.erb
|
192
209
|
- app/views/layout/application.html.erb
|
193
|
-
- app/
|
194
|
-
-
|
210
|
+
- app/views/main/index.html.erb
|
211
|
+
- public/images/avatar.png
|
195
212
|
- public/images/indicator.gif
|
196
213
|
- public/images/merb.jpg
|
197
|
-
- public/images/avatar.png
|
198
214
|
- public/stylesheets/base.css
|
199
215
|
- public/stylesheets/chef.css
|
200
|
-
- public/stylesheets/themes/
|
216
|
+
- public/stylesheets/themes/bec/style.css
|
217
|
+
- public/stylesheets/themes/bec-green/style.css
|
201
218
|
- public/stylesheets/themes/blue/style.css
|
219
|
+
- public/stylesheets/themes/default/style.css
|
202
220
|
- public/stylesheets/themes/djime-cerulean/style.css
|
221
|
+
- public/stylesheets/themes/kathleene/style.css
|
203
222
|
- public/stylesheets/themes/orange/style.css
|
204
|
-
- public/stylesheets/themes/default/style.css
|
205
223
|
- public/stylesheets/themes/reidb-greenish/style.css
|
206
|
-
-
|
207
|
-
- public/stylesheets/themes/bec/style.css
|
208
|
-
- !binary |-
|
209
|
-
YmluL2NoZWYtc2VydmVy
|
224
|
+
- bin/chef-server
|
210
225
|
- config.ru
|
211
226
|
- development.ru
|
212
227
|
homepage: http://wiki.opscode.com/display/chef
|
@@ -224,12 +239,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
224
239
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
225
240
|
none: false
|
226
241
|
requirements:
|
227
|
-
- - ! '
|
242
|
+
- - ! '>'
|
228
243
|
- !ruby/object:Gem::Version
|
229
|
-
version:
|
244
|
+
version: 1.3.1
|
230
245
|
requirements: []
|
231
246
|
rubyforge_project:
|
232
|
-
rubygems_version: 1.8.
|
247
|
+
rubygems_version: 1.8.23
|
233
248
|
signing_key:
|
234
249
|
specification_version: 3
|
235
250
|
summary: A systems integration framework, built to bring the benefits of configuration
|