public
Rubygem
Description: UnitController assists with unit testing controllers by stubbing view rendering.
Homepage: http://unit-controller.rubyforge.org
Clone URL: git://github.com/dan-manges/unit-controller.git
Search Repo:
rename README to README.rdoc
dan-manges (author)
Mon Jun 30 21:06:15 -0700 2008
commit  f27800b962fa14a6c4bfaa03cdddc49e32ab24ff
tree    7c9c868e59a94a34ce67fde3e848b74c222c1f57
parent  524055e48e4e988b2d93856ec0399378e4ea78bb
...
18
19
20
21
 
22
23
24
...
39
40
41
42
43
 
 
44
45
 
46
47
48
...
18
19
20
 
21
22
23
24
...
39
40
41
 
 
42
43
44
 
45
46
47
48
0
@@ -18,7 +18,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
0
   rdoc.rdoc_dir = "doc"
0
   rdoc.title = "UnitController"
0
   rdoc.options << '--line-numbers'
0
- rdoc.rdoc_files.include('README')
0
+ rdoc.rdoc_files.include('README.rdoc')
0
 end
0
 
0
 desc "Upload RDoc to RubyForge"
0
@@ -39,10 +39,10 @@ gem_spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "unit-controller"
0
 
0
   s.has_rdoc = true
0
- s.extra_rdoc_files = ['README']
0
- s.rdoc_options << '--title' << "UnitController" << '--main' << 'README' << '--line-numbers'
0
+ s.extra_rdoc_files = ['README.rdoc']
0
+ s.rdoc_options << '--title' << "UnitController" << '--main' << 'README.rdoc' << '--line-numbers'
0
 
0
- s.files = FileList['{lib,test}/**/*.rb', 'README', 'Rakefile'].to_a
0
+ s.files = FileList['{lib,test}/**/*.rb', 'README.rdoc', 'Rakefile'].to_a
0
 end
0
 Rake::GemPackageTask.new(gem_spec) do |package|
0
   package.need_zip = false
...
3
4
5
6
7
8
9
10
 
11
12
13
14
 
 
15
16
17
 
18
19
20
 
21
 
 
 
 
 
 
 
 
 
 
22
...
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
0
@@ -3,20 +3,28 @@ Gem::Specification.new do |s|
0
   s.name = %q{unit_controller}
0
   s.version = "0.1.0"
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.date = %q{2008-06-01}
0
+ s.date = %q{2008-06-30}
0
   s.description = %q{UnitController assists with unit testing controllers by stubbing view rendering.}
0
   s.email = %q{daniel.manges@gmail.com}
0
- s.extra_rdoc_files = ["README"]
0
- s.files = ["lib/unit_controller/capture_render.rb", "lib/unit_controller/test_case_extension.rb", "lib/unit_controller.rb", "test/sample_controller.rb", "test/test_case_test.rb", "test/test_helper.rb", "test/unit_controller_test.rb", "README", "Rakefile"]
0
+ s.extra_rdoc_files = ["README.rdoc"]
0
+ s.files = ["lib/unit_controller/capture_render.rb", "lib/unit_controller/test_case_extension.rb", "lib/unit_controller.rb", "test/sample_controller.rb", "test/test_case_test.rb", "test/test_helper.rb", "test/unit_controller_test.rb", "README.rdoc", "Rakefile"]
0
   s.has_rdoc = true
0
   s.homepage = %q{http://unit-controller.rubyforge.org}
0
- s.rdoc_options = ["--title", "UnitController", "--main", "README", "--line-numbers"]
0
+ s.rdoc_options = ["--title", "UnitController", "--main", "README.rdoc", "--line-numbers"]
0
   s.require_paths = ["lib"]
0
   s.rubyforge_project = %q{unit-controller}
0
- s.rubygems_version = %q{1.1.1}
0
+ s.rubygems_version = %q{1.2.0}
0
   s.summary = %q{UnitController assists with unit testing controllers by stubbing view rendering.}
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.