metaskills / sharded_database forked from brennandunn/sharded_database

ActiveRecord plugin that provides the underlying framework to connect to multiple databases at the instance level

sharded_database / sharded_database.gemspec
100644 31 lines (31 sloc) 1.081 kb
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
Gem::Specification.new do |s|
  s.name = "sharded_database"
  s.version = "0.3.0"
  s.date = "2009-01-21"
  s.summary = "Allows for connection handling at the instance level."
  s.email = "me@brennandunn.com"
  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" ]
  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