-
Notifications
You must be signed in to change notification settings - Fork 22
/
spice.gemspec
30 lines (26 loc) · 1.2 KB
/
spice.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "spice/version"
Gem::Specification.new do |s|
s.name = "spice"
s.version = Spice::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [ "Dan Ryan" ]
s.email = [ "[email protected]" ]
s.homepage = "https://github.com/danryan/spice"
s.summary = %q{Chef API wrapper}
s.description = %q{Spice is a zesty Chef API wrapper. Its primary purpose is to let you easily integrate your apps with a Chef server easily. Spice provides support for the entire released Chef API}
s.license = "MIT"
s.rubyforge_project = "spice"
s.add_dependency "faraday", "~> 0.8.0"
s.add_dependency "mixlib-authentication", '~> 1.1.4'
s.add_dependency "multi_json", '~> 1.3.6'
s.add_development_dependency 'rspec', '>= 2.8.0'
s.add_development_dependency "webmock", ">= 1.8.2"
s.add_development_dependency "timecop", ">= 0.3.5"
s.add_development_dependency 'spork', '>= 1.0.0.rc2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end