lib/inochi/inochi.rb in inochi-4.0.1 vs lib/inochi/inochi.rb in inochi-5.0.0
- old
+ new
@@ -16,16 +16,16 @@
WEBSITE = 'http://snk.tuxfamily.org/lib/inochi/'
##
# Number of this release of this project.
#
- VERSION = '4.0.1'
+ VERSION = '5.0.0'
##
# Date of this release of this project.
#
- RELDATE = '2010-07-28'
+ RELDATE = '2010-08-07'
##
# Description of this release of this project.
#
def self.inspect
@@ -42,41 +42,40 @@
#
# @example
#
# RUNTIME = {
# # this project needs exactly version 1.2.3 of the "an_example" gem
- # "an_example" => [ "1.2.3" ],
+ # 'an_example' => [ '1.2.3' ],
#
# # this project needs at least version 1.2 (but not
# # version 1.2.4 or newer) of the "another_example" gem
- # "another_example" => [ ">= 1.2" , "< 1.2.4" ],
+ # 'another_example' => [ '>= 1.2' , '< 1.2.4' ],
#
# # this project needs any version of the "yet_another_example" gem
- # "yet_another_example" => [],
+ # 'yet_another_example' => [],
# }
#
RUNTIME = {
'ember' => [ '>= 0.3.0' , '< 1' ], # for eRuby templates
'highline' => [ '>= 1.5' , '< 2' ], # for echoless password entry
'mechanize' => [ '~> 1' , '< 2' ], # for publishing announcements
'nokogiri' => [ '>= 1.4' , '< 2' ], # for parsing HTML and XML
'rake' => [ '>= 0.8.4' , '< 1' ], # for Inochi::Engine
- 'ronn' => [ '>= 0.7.0' , '< 1' ], # for making UNIX man pages
'yard' => [ '>= 0.5.8' , '< 1' ], # for making API documentation
}
##
# RubyGems required by this project during development.
#
# @example
#
# DEVTIME = {
# # this project needs exactly version 1.2.3 of the "an_example" gem
- # "an_example" => [ "1.2.3" ],
+ # 'an_example' => [ '1.2.3' ],
#
# # this project needs at least version 1.2 (but not
# # version 1.2.4 or newer) of the "another_example" gem
- # "another_example" => [ ">= 1.2" , "< 1.2.4" ],
+ # 'another_example' => [ '>= 1.2' , '< 1.2.4' ],
#
# # this project needs any version of the "yet_another_example" gem
# "yet_another_example" => [],
# }
#