inochi 4.0.0 → 4.0.1

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.
@@ -18,12 +18,12 @@ module Inochi
18
18
  ##
19
19
  # Number of this release of this project.
20
20
  #
21
- VERSION = '4.0.0'
21
+ VERSION = '4.0.1'
22
22
 
23
23
  ##
24
24
  # Date of this release of this project.
25
25
  #
26
- RELDATE = '2010-07-25'
26
+ RELDATE = '2010-07-28'
27
27
 
28
28
  ##
29
29
  # Description of this release of this project.
@@ -86,7 +86,7 @@ module Inochi
86
86
  }
87
87
 
88
88
  # establish gem version dependencies
89
- if respond_to? :gem
89
+ if respond_to? :gem, true
90
90
  [RUNTIME, DEVTIME].each do |deps|
91
91
  deps.each do |gem_name, gem_version|
92
92
  begin
@@ -78,7 +78,7 @@ module #{library_name}
78
78
  }
79
79
 
80
80
  # establish gem version dependencies
81
- if respond_to? :gem
81
+ if respond_to? :gem, true
82
82
  [RUNTIME, DEVTIME].each do |deps|
83
83
  deps.each do |gem_name, gem_version|
84
84
  begin
data/man.html CHANGED
@@ -78,11 +78,51 @@
78
78
  <a href="#CREDITS">CREDITS</a>
79
79
  <a href="#LICENSE">LICENSE</a>
80
80
  <a href="#SEE-ALSO">SEE ALSO</a>
81
+ <a href="#Features">Features</a>
82
+ <a href="#Resources">Resources</a>
83
+ <a href="#Setup">Setup</a>
84
+ <a href="#inochi-init">inochi init</a>
85
+ <a href="#inochi-api">inochi api</a>
86
+ <a href="#inochi-man">inochi man</a>
87
+ <a href="#inochi-gem">inochi gem</a>
88
+ <a href="#inochi-ann">inochi ann</a>
89
+ <a href="#inochi-pub-ann-ruby-talk">inochi pub:ann:ruby-talk</a>
90
+ <a href="#inochi-pub-web">inochi pub:web</a>
91
+ <a href="#Options-file">Options file</a>
92
+ <a href="#License-file">License file</a>
93
+ <a href="#Ruby-library">Ruby library</a>
94
+ <a href="#Test-suite">Test suite</a>
95
+ <a href="#Shell-command">Shell command</a>
96
+ <a href="#Help-manual">Help manual</a>
97
+ <a href="#Web-presence">Web presence</a>
98
+ <a href="#Creating-a-new-project">Creating a new project</a>
99
+ <a href="#Running-the-shell-command">Running the shell command</a>
100
+ <a href="#Building-the-help-manual">Building the help manual</a>
101
+ <a href="#Implementing-the-project">Implementing the project</a>
102
+ <a href="#Prerequisites">Prerequisites</a>
103
+ <a href="#Infrastructure">Infrastructure</a>
104
+ <a href="#-LOAD_PATH-setup">$LOAD_PATH setup</a>
105
+ <a href="#RubyGems-setup">RubyGems setup</a>
106
+ <a href="#Running-tests">Running tests</a>
107
+ <a href="#Contributing">Contributing</a>
108
+ <a href="#Version-4-0-1-2010-07-28-">Version 4.0.1 (2010-07-28)</a>
109
+ <a href="#Version-4-0-0-2010-07-25-">Version 4.0.0 (2010-07-25)</a>
110
+ <a href="#Version-3-0-0-2010-04-27-">Version 3.0.0 (2010-04-27)</a>
111
+ <a href="#Version-2-0-1-2010-04-25-">Version 2.0.1 (2010-04-25)</a>
112
+ <a href="#Version-2-0-0-2010-04-24-">Version 2.0.0 (2010-04-24)</a>
113
+ <a href="#Version-1-1-1-2009-10-03-">Version 1.1.1 (2009-10-03)</a>
114
+ <a href="#Version-1-1-0-2009-09-06-">Version 1.1.0 (2009-09-06)</a>
115
+ <a href="#Version-1-0-0-2009-05-03-">Version 1.0.0 (2009-05-03)</a>
116
+ <a href="#Version-0-3-0-2009-02-12-">Version 0.3.0 (2009-02-12)</a>
117
+ <a href="#Version-0-2-0-2009-01-25-">Version 0.2.0 (2009-01-25)</a>
118
+ <a href="#Version-0-1-0-2009-01-13-">Version 0.1.0 (2009-01-13)</a>
119
+ <a href="#Version-0-0-1-2009-01-13-">Version 0.0.1 (2009-01-13)</a>
120
+ <a href="#Version-0-0-0-2009-01-13-">Version 0.0.0 (2009-01-13)</a>
81
121
  </div>
82
122
 
83
123
  <ol class='man-decor man-head man head'>
84
124
  <li class='tl'>inochi(1)</li>
85
- <li class='tc'>Version 4.0.0</li>
125
+ <li class='tc'>Version 4.0.1</li>
86
126
  <li class='tr'>inochi(1)</li>
87
127
  </ol>
88
128
 
@@ -650,6 +690,21 @@ in the <code>test/helper.rb</code> file.</p>
650
690
 
651
691
  <p>This section contains release notes of current and past releases.</p>
652
692
 
693
+ <h3 id="Version-4-0-1-2010-07-28-">Version 4.0.1 (2010-07-28)</h3>
694
+
695
+ <p>This release fixes a bug in gem version dependency establishment.</p>
696
+
697
+ <p>Bug fixes:</p>
698
+
699
+ <ul>
700
+ <li><p>Gem version dependencies were not being established in Ruby 1.8.7 and
701
+ 1.9.2 because <code>Kernel#gem</code> <a href="http://redmine.ruby-lang.org/issues/show/3617">is a private method</a> in those Ruby versions.</p>
702
+
703
+ <p>To propagate this fix into your projects, please reinitialize them with
704
+ this version of Inochi.</p></li>
705
+ </ul>
706
+
707
+
653
708
  <h3 id="Version-4-0-0-2010-07-25-">Version 4.0.0 (2010-07-25)</h3>
654
709
 
655
710
  <p>Incompatible changes:</p>
@@ -1141,7 +1196,7 @@ the public domain by <a href="http://www.openclipart.org/user-detail/Peileppe">P
1141
1196
 
1142
1197
  <p>(the ISC license)</p>
1143
1198
 
1144
- <p>Copyright 2008 Suraj N. Kurapati <a href="&#109;&#x61;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#x73;&#117;&#x6e;&#97;&#107;&#117;&#x40;&#x67;&#x6d;&#97;&#105;&#108;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x73;&#117;&#x6e;&#x61;&#x6b;&#x75;&#64;&#103;&#x6d;&#x61;&#x69;&#x6c;&#x2e;&#99;&#111;&#109;</a></p>
1199
+ <p>Copyright 2008 Suraj N. Kurapati <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#115;&#x75;&#110;&#x61;&#107;&#117;&#x40;&#x67;&#109;&#x61;&#105;&#108;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x73;&#117;&#110;&#97;&#107;&#x75;&#x40;&#x67;&#x6d;&#x61;&#105;&#108;&#46;&#99;&#111;&#109;</a></p>
1145
1200
 
1146
1201
  <p>Permission to use, copy, modify, and/or distribute this software for any
1147
1202
  purpose with or without fee is hereby granted, provided that the above
Binary file
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 4
7
7
  - 0
8
- - 0
9
- version: 4.0.0
8
+ - 1
9
+ version: 4.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Suraj N. Kurapati
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-25 00:00:00 -07:00
17
+ date: 2010-07-28 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency