public
Rubygem
Fork of swdyh/quilt
Description: a ruby library for generating identicon
Clone URL: git://github.com/crossblaim/quilt.git
 * rename README to README.rdoc
swdyh (author)
Thu Jun 19 05:01:28 -0700 2008
commit  d4bc6d0e4a296373d98b4b0793ccd7bcb3717dc3
tree    a8e989182eac3d092a846d9fbe9de4e622320207
parent  1010ae42d46ef87774ef4655abb78a8dc189d024
...
8
9
10
11
 
12
13
14
...
27
28
29
30
 
31
32
33
...
45
46
47
48
 
49
50
51
...
62
63
64
65
 
66
67
68
...
95
96
97
98
 
99
100
101
...
8
9
10
 
11
12
13
14
...
27
28
29
 
30
31
32
33
...
45
46
47
 
48
49
50
51
...
62
63
64
 
65
66
67
68
...
95
96
97
 
98
99
100
101
0
@@ -8,7 +8,7 @@ require 'rake/rdoctask'
0
 require 'rake/contrib/rubyforgepublisher'
0
 require 'rake/contrib/sshpublisher'
0
 require 'fileutils'
0
-require 'rubyforge'
0
+require 'date'
0
 include FileUtils
0
 
0
 NAME = "quilt"
0
@@ -27,7 +27,7 @@ RDOC_OPTS = [
0
   "--charset", "utf-8",
0
   "--opname", "index.html",
0
   "--line-numbers",
0
- "--main", "README",
0
+ "--main", "README.rdoc",
0
   "--inline-source",
0
 ]
0
 
0
@@ -45,7 +45,7 @@ spec = Gem::Specification.new do |s|
0
   s.version = VERS
0
   s.platform = Gem::Platform::RUBY
0
   s.has_rdoc = true
0
- s.extra_rdoc_files = ["README", "ChangeLog", "MIT-LICENSE"]
0
+ s.extra_rdoc_files = ["README.rdoc", "ChangeLog", "MIT-LICENSE"]
0
   s.rdoc_options += RDOC_OPTS + ['--exclude', '^(examples|extras)/']
0
   s.summary = DESCRIPTION
0
   s.description = DESCRIPTION
0
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
0
   #s.add_dependency('activesupport', '>=1.3.1')
0
   #s.required_ruby_version = '>= 1.8.2'
0
 
0
- s.files = %w(README ChangeLog Rakefile) +
0
+ s.files = %w(README.rdoc ChangeLog Rakefile) +
0
     Dir.glob("{bin,doc,test,lib,templates,generator,extras,website,script}/**/*") +
0
     Dir.glob("ext/**/*.{h,c,rb}") +
0
     Dir.glob("examples/**/*.rb") +
0
@@ -95,7 +95,7 @@ Rake::RDocTask.new do |rdoc|
0
   if ENV['DOC_FILES']
0
     rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
0
   else
0
- rdoc.rdoc_files.include('README', 'ChangeLog')
0
+ rdoc.rdoc_files.include('README.rdoc', 'ChangeLog')
0
     rdoc.rdoc_files.include('lib/**/*.rb')
0
     rdoc.rdoc_files.include('ext/**/*.c')
0
   end
...
6
7
8
9
 
10
11
12
13
 
 
14
15
16
 
17
18
19
...
6
7
8
 
9
10
11
 
 
12
13
14
15
 
16
17
18
19
0
@@ -6,14 +6,14 @@ Gem::Specification.new do |s|
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["swdyh"]
0
- s.date = %q{2008-06-08}
0
+ s.date = %q{2008-06-19}
0
   s.description = %q{a library for generating identicon.}
0
   s.email = %q{youhei@gmail.com}
0
- s.extra_rdoc_files = ["README", "ChangeLog", "MIT-LICENSE"]
0
- s.files = ["README", "ChangeLog", "Rakefile", "test/quilt_test.rb", "test/test_helper.rb", "lib/quilt.rb", "MIT-LICENSE"]
0
+ s.extra_rdoc_files = ["README.rdoc", "ChangeLog", "MIT-LICENSE"]
0
+ s.files = ["README.rdoc", "ChangeLog", "Rakefile", "test/quilt_test.rb", "test/test_helper.rb", "lib/quilt.rb", "MIT-LICENSE"]
0
   s.has_rdoc = true
0
   s.homepage = %q{http://quilt.rubyforge.org}
0
- s.rdoc_options = ["--title", "quilt documentation", "--charset", "utf-8", "--opname", "index.html", "--line-numbers", "--main", "README", "--inline-source", "--exclude", "^(examples|extras)/"]
0
+ s.rdoc_options = ["--title", "quilt documentation", "--charset", "utf-8", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source", "--exclude", "^(examples|extras)/"]
0
   s.require_paths = ["lib"]
0
   s.rubyforge_project = %q{quilt}
0
   s.rubygems_version = %q{1.1.1}

Comments

    No one has commented yet.