-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyogo-db.gemspec
29 lines (24 loc) · 1.04 KB
/
yogo-db.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
Gem::Specification.new do |gem|
gem.authors = [ "Ryan Heimbuch" ]
gem.email = [ "[email protected]" ]
gem.description = "Restful interface to yogo data components"
gem.summary = "Restful interface to yogo data components"
gem.homepage = "http://yogo.msu.montana.edu"
gem.date = "2011-12-20"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.extra_rdoc_files = %w[LICENSE README.txt]
gem.name = "yogo-db"
gem.require_paths = [ "lib" ]
gem.version = "0.5.0"
gem.add_runtime_dependency("sinatra")
gem.add_runtime_dependency("rack")
gem.add_runtime_dependency("activesupport")
gem.add_runtime_dependency("data_mapper", "~> 1.0.2")
gem.add_runtime_dependency("dm-sqlite-adapter")
gem.add_runtime_dependency("dm-postgres-adapter")
gem.add_runtime_dependency("yogo-operation")
gem.add_runtime_dependency("yogo-datamapper")
gem.add_runtime_dependency("json")
gem.add_runtime_dependency("carrierwave")
end