-
Notifications
You must be signed in to change notification settings - Fork 1
/
sharded_database.gemspec
32 lines (32 loc) · 1.11 KB
/
sharded_database.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
Gem::Specification.new do |s|
s.name = "sharded_database"
s.version = "0.3.3"
s.date = "2009-02-12"
s.summary = "Allows for connection handling at the instance level."
s.email = "[email protected]"
s.homepage = "http://github.com/brennandunn/sharded_database/"
s.description = "Allows for connection handling at the instance level."
s.has_rdoc = true
s.authors = ["Brennan Dunn"]
s.files = [
"Rakefile",
"README.rdoc",
"init.rb",
"lib/sharded_database.rb",
"lib/sharded_database/aggregate.rb",
"lib/sharded_database/aggregate_proxy.rb",
"lib/sharded_database/core_extensions.rb",
"lib/sharded_database/model_with_connection.rb",
"lib/sharded_database/has_many_association.rb" ]
s.test_files = [
"test/helper.rb",
"test/sharded_database/association_test.rb",
"test/sharded_database/connection_test.rb",
"test/sharded_database/instance_test.rb",
"test/lib/boot.rb",
"test/lib/database.yml",
"test/lib/models.rb",
"test/lib/test_case.rb" ]
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["README.rdoc"]
end