mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d6ec12417a
* doc/*: Move entry to default gems category from standard library. * lib/shell/*: Added `Shell::VERSION` and re-used it with @RELEASE_VERSION. * test/shell/test_command_processor.rb: added missing require for test library. * tool/sync_default_gems.rb: Support shell library. We need to ignore shellwords.rb when syncing shell* files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
298 B
Ruby
17 lines
298 B
Ruby
# frozen_string_literal: false
|
|
#
|
|
# version.rb - shell version definition file
|
|
# $Release Version: 0.7$
|
|
# $Revision$
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
|
#
|
|
# --
|
|
#
|
|
#
|
|
#
|
|
|
|
class Shell # :nodoc:
|
|
VERSION = "0.7"
|
|
@RELEASE_VERSION = VERSION
|
|
@LAST_UPDATE_DATE = "07/03/20"
|
|
end
|