-
Notifications
You must be signed in to change notification settings - Fork 25
/
cloudkit.gemspec
43 lines (35 loc) · 1.82 KB
/
cloudkit.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
31
32
33
34
35
36
37
38
39
40
41
42
43
dir = File.dirname(__FILE__)
require File.expand_path(File.join(dir, 'lib', 'cloudkit', 'version'))
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.name = "cloudkit"
s.version = CloudKit::VERSION
s.date = "2010-11-08"
s.summary = "An Open Web JSON Appliance."
s.description = <<-EOD
CloudKit provides schema-free, auto-versioned, RESTful JSON storage with optional OpenID and OAuth support, including OAuth Discovery.
CloudKit is Rack middleware. It can be used on its own or alongside other Rack-based applications or middleware components such as Rails, Merb or Sinatra.
EOD
s.authors = ["Jon Crosby"]
s.email = "[email protected]"
s.homepage = "http://getcloudkit.com"
s.files = Dir["#{dir}/lib/**/*.rb"] + Dir["#{dir}/examples/**/*"] + Dir["#{dir}/doc/**/*"] + %w{README CHANGES COPYING TODO Gemfile Rakefile}
s.require_paths = ["lib"]
s.test_files = Dir["#{dir}/spec/**/*.rb"]
s.executables = ["cloudkit"]
s.rubyforge_project = "cloudkit"
s.add_runtime_dependency 'rack', '~> 1.1'
s.add_runtime_dependency 'uuid', '= 2.0.1'
s.add_runtime_dependency 'oauth', '~> 0.3'
s.add_runtime_dependency 'ruby-openid', '~> 2.1'
s.add_runtime_dependency 'json', '~> 1.4.6'
s.add_runtime_dependency 'formatador', '~>0.0.10'
s.add_runtime_dependency 'mongo', '~> 1.1.2'
s.add_runtime_dependency 'bson', '~> 1.1.2'
s.add_runtime_dependency 'bson_ext', '~> 1.1.2'
s.add_development_dependency 'rake', '~>0.8.7'
s.add_development_dependency 'rspec', '~> 2.2.0'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'ruby-debug'
end