summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2011-03-25 13:03:38 -0700
committerDaniel DeLeo <dan@opscode.com>2011-03-25 13:03:38 -0700
commit610e3a7753f952d648f704a72d80ac354c1afb03 (patch)
treece6d14cf2c4e179c2b425d3e8b1fd8997c60575e
parent53de4e9c3c5b871762aec93f6093ea9950bff4ca (diff)
downloadohai-610e3a7753f952d648f704a72d80ac354c1afb03.tar.gz
ohai.gemspec is *the* gemspec, don't gitignore it.
-rw-r--r--.gitignore1
-rw-r--r--ohai.gemspec26
2 files changed, 26 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 19e83446..af75af03 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,3 @@
pkg/
tmp/
coverage/
-ohai.gemspec
diff --git a/ohai.gemspec b/ohai.gemspec
new file mode 100644
index 00000000..3cee3bd3
--- /dev/null
+++ b/ohai.gemspec
@@ -0,0 +1,26 @@
+
+OHAI_VERSION = "0.6.0.beta.0"
+
+spec = Gem::Specification.new do |s|
+ s.name = "ohai"
+ s.version = OHAI_VERSION
+ s.platform = Gem::Platform::RUBY
+ s.has_rdoc = true
+ s.summary = "Ohai profiles your system and emits JSON"
+ s.description = s.summary
+ s.author = "Adam Jacob"
+ s.email = "adam@opscode.com"
+ s.homepage = "http://wiki.opscode.com/display/ohai"
+
+ s.add_dependency "yajl-ruby", "~> 0.7.8"
+ 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.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{docs,lib,spec}/**/*")
+end