bquorning-nulldb 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/nulldb.gemspec +47 -0
- metadata +2 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/nulldb.gemspec
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{nulldb}
|
|
8
|
+
s.version = "0.0.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Avdi Grimm"]
|
|
12
|
+
s.date = %q{2009-09-21}
|
|
13
|
+
s.extra_rdoc_files = [
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"README"
|
|
16
|
+
]
|
|
17
|
+
s.files = [
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README",
|
|
20
|
+
"Rakefile",
|
|
21
|
+
"VERSION",
|
|
22
|
+
"init.rb",
|
|
23
|
+
"lib/active_record/connection_adapters/nulldb_adapter.rb",
|
|
24
|
+
"lib/nulldb_rspec.rb",
|
|
25
|
+
"nulldb.gemspec",
|
|
26
|
+
"spec/nulldb_spec.rb",
|
|
27
|
+
"tasks/database.rake"
|
|
28
|
+
]
|
|
29
|
+
s.homepage = %q{http://nulldb.rubyforge.org}
|
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
31
|
+
s.require_paths = ["lib"]
|
|
32
|
+
s.rubygems_version = %q{1.3.5}
|
|
33
|
+
s.summary = %q{NullDB lets you to test your models without ever touching a real database.}
|
|
34
|
+
s.test_files = [
|
|
35
|
+
"spec/nulldb_spec.rb"
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
if s.respond_to? :specification_version then
|
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
40
|
+
s.specification_version = 3
|
|
41
|
+
|
|
42
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
43
|
+
else
|
|
44
|
+
end
|
|
45
|
+
else
|
|
46
|
+
end
|
|
47
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bquorning-nulldb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Avdi Grimm
|
|
@@ -30,6 +30,7 @@ files:
|
|
|
30
30
|
- init.rb
|
|
31
31
|
- lib/active_record/connection_adapters/nulldb_adapter.rb
|
|
32
32
|
- lib/nulldb_rspec.rb
|
|
33
|
+
- nulldb.gemspec
|
|
33
34
|
- spec/nulldb_spec.rb
|
|
34
35
|
- tasks/database.rake
|
|
35
36
|
has_rdoc: false
|