forked from jvimal/box-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
box-api.gemspec
21 lines (18 loc) · 912 Bytes
/
box-api.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "box-api"
s.version = "0.2.2"
s.platform = Gem::Platform::RUBY
s.authors = ["Box.net", "Luke Curley"]
s.email = ["[email protected]"]
s.homepage = "http://box.net"
s.summary = %q{A ruby library that helps navigate the Box API}
s.description = %q{Box-api is a collection of classes that implement functions defined in the Box public API. See http://developer.box.net for more information.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = [ "lib", "spec" ]
s.add_dependency("httmultiparty", "~> 0.3.6")
s.add_development_dependency("launchy") # only used in examples
s.add_development_dependency("rake")
s.add_development_dependency("rspec")
end