-
Notifications
You must be signed in to change notification settings - Fork 0
/
activerecord-cachedb-adapter.gemspec
48 lines (40 loc) · 1.56 KB
/
activerecord-cachedb-adapter.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
40
41
42
43
44
45
46
47
48
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'activerecord-cachedb-adapter'
s.version = '0.1'
s.date = '2010-10-07'
s.platform = Gem::Platform.new([nil, "java", nil])
s.rubyforge_project = %q{jruby-extras}
s.summary = "ActiveRecord adapter for Intersystems CacheDb."
s.description = "ActiveRecord adapter for Intersystems CacheDb. Only for use with JRuby. Requires separate Cache JDBC driver."
s.authors = ["Nick Sieger"]
s.email = '[email protected]'
s.homepage = 'http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter'
s.require_paths = %w[lib]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE]
# = MANIFEST =
s.files = %w[
LICENSE
README.md
Rakefile
activerecord-cachedb-adapter.gemspec
lib/active_record/connection_adapters/cachedb_adapter.rb
lib/activerecord-cachedb-adapter.rb
lib/arjdbc/cachedb.rb
lib/arjdbc/cachedb/adapter.rb
lib/arjdbc/cachedb/connection_methods.rb
lib/arjdbc/discover.rb
test/cachedb_simple_test.rb
test/db/cachedb.rb
]
# = MANIFEST =
s.test_files = s.files.select { |path| path =~ /^test\/.*test.*\.rb/ }
s.add_dependency(%q<activerecord-jdbc-adapter>, [">= 1.0.0"])
s.rubygems_version = %q{1.3.7}
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
end
end