public
Rubygem
Description: Enables testing ActiveRecord classes without hitting the database.
Homepage: http://unit-test-ar.rubyforge.org/
Clone URL: git://github.com/dan-manges/unit-record.git
rename README to README.rdoc for github formatting
dan-manges (author)
Fri Jul 04 13:05:39 -0700 2008
commit  c4fd8452bcb13218e4d72b11e9cb2941744f46e1
tree    63b342b79cc7a3e95069f2b0382a0cac45e4ecdc
parent  c6724ddca1d76de85d78441196dc46136aa85377
...
27
28
29
30
 
31
32
33
...
49
50
51
52
53
 
 
54
55
56
 
57
58
59
...
27
28
29
 
30
31
32
33
...
49
50
51
 
 
52
53
54
55
 
56
57
58
59
0
@@ -27,7 +27,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
0
   rdoc.rdoc_dir = "doc"
0
   rdoc.title = "UnitRecord"
0
   rdoc.options << '--line-numbers'
0
- rdoc.rdoc_files.include('README', 'CHANGELOG')
0
+ rdoc.rdoc_files.include('README.rdoc', 'CHANGELOG')
0
 end
0
 
0
 desc "Upload RDoc to RubyForge"
0
@@ -49,11 +49,11 @@ gem_spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "unit-test-ar"
0
 
0
   s.has_rdoc = true
0
- s.extra_rdoc_files = ['README', 'CHANGELOG']
0
- s.rdoc_options << '--title' << "UnitRecord" << '--main' << 'README' << '--line-numbers'
0
+ s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG']
0
+ s.rdoc_options << '--title' << "UnitRecord" << '--main' << 'README.rdoc' << '--line-numbers'
0
 
0
   s.autorequire = "unit_record"
0
- s.files = FileList['{lib,test}/**/*.rb', 'CHANGELOG', 'README', 'Rakefile'].to_a
0
+ s.files = FileList['{lib,test}/**/*.rb', 'CHANGELOG', 'README.rdoc', 'Rakefile'].to_a
0
 end
0
 
0
 Rake::GemPackageTask.new(gem_spec) do |package|
...
3
4
5
6
7
8
9
10
11
 
12
13
14
15
 
 
16
17
18
 
19
20
21
 
22
 
 
 
 
 
 
 
 
 
 
23
...
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
0
@@ -3,21 +3,29 @@ Gem::Specification.new do |s|
0
   s.name = %q{unit_record}
0
   s.version = "0.4.1"
0
 
0
- s.specification_version = 2 if s.respond_to? :specification_version=
0
-
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["Dan Manges"]
0
   s.autorequire = %q{unit_record}
0
- s.date = %q{2008-06-01}
0
+ s.date = %q{2008-07-04}
0
   s.description = %q{UnitRecord enables unit testing without hitting the database.}
0
   s.email = %q{daniel.manges@gmail.com}
0
- s.extra_rdoc_files = ["README", "CHANGELOG"]
0
- s.files = ["lib/unit_record/association_stubbing.rb", "lib/unit_record/column_cacher.rb", "lib/unit_record/column_extension.rb", "lib/unit_record/disconnected_active_record.rb", "lib/unit_record/disconnected_fixtures.rb", "lib/unit_record/disconnected_test_case.rb", "lib/unit_record.rb", "test/db/schema.rb", "test/functional/association_stubbing_test.rb", "test/functional/column_cacher_test.rb", "test/functional/column_test.rb", "test/functional/controller_test.rb", "test/functional/disconnected_active_record_test.rb", "test/functional/disconnected_fixtures_test.rb", "test/functional/disconnected_test_case_test.rb", "test/functional/functional_test_helper.rb", "test/test_helper.rb", "test/unit/column_extension_test.rb", "test/unit/unit_test_helper.rb", "CHANGELOG", "README", "Rakefile"]
0
+ s.extra_rdoc_files = ["README.rdoc", "CHANGELOG"]
0
+ s.files = ["lib/unit_record/association_stubbing.rb", "lib/unit_record/column_cacher.rb", "lib/unit_record/column_extension.rb", "lib/unit_record/disconnected_active_record.rb", "lib/unit_record/disconnected_fixtures.rb", "lib/unit_record/disconnected_test_case.rb", "lib/unit_record.rb", "test/db/schema.rb", "test/functional/association_stubbing_test.rb", "test/functional/column_cacher_test.rb", "test/functional/column_test.rb", "test/functional/controller_test.rb", "test/functional/disconnected_active_record_test.rb", "test/functional/disconnected_fixtures_test.rb", "test/functional/disconnected_test_case_test.rb", "test/functional/functional_test_helper.rb", "test/test_helper.rb", "test/unit/column_extension_test.rb", "test/unit/unit_test_helper.rb", "CHANGELOG", "README.rdoc", "Rakefile"]
0
   s.has_rdoc = true
0
   s.homepage = %q{http://unit-test-ar.rubyforge.org}
0
- s.rdoc_options = ["--title", "UnitRecord", "--main", "README", "--line-numbers"]
0
+ s.rdoc_options = ["--title", "UnitRecord", "--main", "README.rdoc", "--line-numbers"]
0
   s.require_paths = ["lib"]
0
   s.rubyforge_project = %q{unit-test-ar}
0
- s.rubygems_version = %q{1.1.1}
0
+ s.rubygems_version = %q{1.2.0}
0
   s.summary = %q{UnitRecord enables unit testing without hitting the database.}
0
+
0
+ if s.respond_to? :specification_version then
0
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
0
+ s.specification_version = 2
0
+
0
+ if current_version >= 3 then
0
+ else
0
+ end
0
+ else
0
+ end
0
 end

Comments

    No one has commented yet.