Rakefile in ohai-0.5.0 vs Rakefile in ohai-0.5.2
- old
+ new
@@ -3,11 +3,11 @@
require 'rubygems/specification'
require 'date'
require 'spec/rake/spectask'
GEM = "ohai"
-GEM_VERSION = "0.5.0"
+GEM_VERSION = "0.5.2"
AUTHOR = "Adam Jacob"
EMAIL = "adam@opscode.com"
HOMEPAGE = "http://wiki.opscode.com/display/ohai"
SUMMARY = "Ohai profiles your system and emits JSON"
@@ -20,21 +20,21 @@
s.description = s.summary
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
- s.add_dependency "json"
+ s.add_dependency "json", "<= 1.4.2"
s.add_dependency "extlib"
s.add_dependency "systemu"
s.add_dependency "mixlib-cli"
s.add_dependency "mixlib-config"
s.add_dependency "mixlib-log"
s.bindir = "bin"
s.executables = %w(ohai)
s.require_path = 'lib'
s.autorequire = GEM
- s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{extras,lib,spec}/**/*")
+ s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{docs,lib,spec}/**/*")
end
task :default => :spec
desc "Run specs"