chef-server-api 10.18.0.rc.1 → 10.18.0.rc.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +3 -3
  2. data/lib/chef-server-api/version.rb +1 -1
  3. metadata +47 -32
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 'rake/gempackagetask'
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
- Rake::GemPackageTask.new(spec) do |pkg|
17
+ Gem::PackageTask.new(spec) do |pkg|
18
18
  pkg.gem_spec = spec
19
19
  end
20
20
 
@@ -1,3 +1,3 @@
1
1
  module ChefServerApi
2
- VERSION = '10.18.0.rc.1'
2
+ VERSION = '10.18.0.rc.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-server-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.18.0.rc.1
4
+ version: 10.18.0.rc.2
5
5
  prerelease: 8
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,24 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-19 00:00:00.000000000 Z
12
+ date: 2013-01-11 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/router.rb
174
+ - config/init.rb
160
175
  - config/rack.rb
161
- - lib/chef-server-api.rb
176
+ - config/router.rb
162
177
  - lib/chef-server-api/version.rb
163
- - spec/unit/sandbox_file_spec.rb
164
- - spec/unit/nodes_controller_environments_spec.rb
165
- - spec/unit/nodes_controller_spec.rb
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/spec_helper.rb
170
- - spec/spec.opts
171
- - spec/spec_model_helper.rb
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/main.rb
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/environments.rb
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/helpers/tarball_helper.rb
194
- - app/helpers/cookbook_version_helper.rb
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/kathleene/style.css
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
- - public/stylesheets/themes/bec-green/style.css
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
@@ -229,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
229
244
  version: 1.3.1
230
245
  requirements: []
231
246
  rubyforge_project:
232
- rubygems_version: 1.8.21
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