forked from rtomayko/sinatra-sequel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsinatra-sequel.gemspec
39 lines (32 loc) · 1.11 KB
/
sinatra-sequel.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
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 = 'sinatra-sequel'
s.version = '0.9.0'
s.date = '2009-08-08'
s.description = "Extends Sinatra with Sequel ORM config, migrations, and helpers"
s.summary = s.description
s.authors = ["Ryan Tomayko"]
s.email = "[email protected]"
# = MANIFEST =
s.files = %w[
COPYING
README.md
Rakefile
lib/sinatra/sequel.rb
sinatra-sequel.gemspec
spec/spec_sinatra_sequel.rb
]
# = MANIFEST =
s.test_files = s.files.select {|path| path =~ /^spec\/.*.rb/ }
s.extra_rdoc_files = %w[README.md COPYING]
s.add_dependency 'sinatra', '>= 0.9.4'
s.add_dependency 'sequel', '>= 3.2.0'
s.add_development_dependency 'bacon'
s.has_rdoc = true
s.homepage = "http://github.com/rtomayko/sinatra-sequel"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sinatra::Sequel"]
s.require_paths = %w[lib]
s.rubyforge_project = 'wink'
s.rubygems_version = '1.1.1'
end