-
Notifications
You must be signed in to change notification settings - Fork 110
/
activerecord-nulldb-adapter.gemspec
60 lines (56 loc) · 1.97 KB
/
activerecord-nulldb-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
49
50
51
52
53
54
55
56
57
58
59
Gem::Specification.new do |s|
s.name = %q{activerecord-nulldb-adapter}
s.version = "0.2.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Avdi Grimm", "Myron Marston"]
s.date = %q{2011-09-12}
s.description = %q{A database backend that translates database interactions into no-ops. Using NullDB enables you to test your model business logic - including after_save hooks - without ever touching a real database.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"activerecord-nulldb-adapter.gemspec",
"lib/nulldb.rb",
"lib/activerecord-nulldb-adapter.rb",
"lib/active_record/connection_adapters/nulldb_adapter.rb",
"lib/nulldb/arel_compiler.rb",
"lib/nulldb/rails.rb",
"lib/nulldb/core.rb",
"lib/nulldb_rspec.rb",
"lib/tasks/database.rake",
"spec/nulldb_spec.rb",
"spec/spec.opts"
]
s.homepage = %q{http://github.com/nulldb/nulldb}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{nulldb}
s.rubygems_version = %q{1.3.7}
s.summary = %q{The Null Object pattern as applied to ActiveRecord database adapters}
s.test_files = [
"spec/nulldb_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activerecord>, [">= 2.0.0"])
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<activerecord>, [">= 2.0.0"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<activerecord>, [">= 2.0.0"])
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end