-
Notifications
You must be signed in to change notification settings - Fork 14
/
sinatra-rest.gemspec
36 lines (32 loc) · 1023 Bytes
/
sinatra-rest.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
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "sinatra-rest"
s.version = "0.3.3"
s.date = "2009-09-25"
s.authors = ["blindgaenger"]
s.email = "[email protected]"
s.homepage = "http://github.com/blindgaenger/sinatra-rest"
s.summary = "Generates RESTful routes for the models of a Sinatra application (ActiveRecord, DataMapper, Stone)"
s.files = [
"Rakefile",
"README.textile",
"lib/sinatra/rest.rb",
"lib/sinatra/rest/adapters.rb",
"lib/sinatra/rest/rest.yaml",
"test/call_order_spec.rb",
"test/crud_spec.rb",
"test/helper.rb",
"test/helpers_spec.rb",
"test/inflection_spec.rb",
"test/routes_spec.rb",
"test/test_spec.rb",
"test/views/people/edit.haml",
"test/views/people/index.haml",
"test/views/people/new.haml",
"test/views/people/show.haml"
]
s.require_paths = ["lib"]
s.add_dependency "sinatra", [">= 0.9.0.5"]
s.add_dependency "english", [">= 0.3.1"]
s.has_rdoc = "false"
end