-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsadie.gemspec
36 lines (31 loc) · 1.34 KB
/
sadie.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sadie/version"
Gem::Specification.new do |s|
s.name = "sadie"
s.version = Sadie::VERSION
s.authors = ["Fred McDavid"]
s.email = ["[email protected]"]
s.homepage = "http://landmetrics.com/projects/sadie"
s.summary = %q{A gem that provides sadie, a data access framework}
s.description = %q{Sadie is a data framework intended to ease the pain of managing related data.}
s.rubyforge_project = "sadie"
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"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
#s.add_runtime_dependency "ini"
#s.add_runtime_dependency "dbi"
#s.add_runtime_dependency "mysql2"
#s.add_runtime_dependency "dbd-mysql"
s.add_runtime_dependency "sinatra", "~> 1.4.4"
s.add_runtime_dependency "rbtree", "~> 0.4.2"
s.add_runtime_dependency "redis", "~> 3.0.6"
s.add_runtime_dependency "redis-mutex", "~> 2.1.1"
s.add_development_dependency "rspec"
s.add_development_dependency "rack-test"
s.extra_rdoc_files = ['README', 'CHANGELOG', 'TODO']
end