/lib/irb/version.rb
http://github.com/alloy/dietrb · Ruby · 21 lines · 13 code · 3 blank · 5 comment · 0 complexity · 8d2d29cf58725eabd57b36c78f201dbf MD5 · raw file
- # MacRuby implementation of IRB.
- #
- # This file is covered by the Ruby license. See COPYING for more details.
- #
- # Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige@gmail.com>
- module IRB
- module VERSION #:nodoc:
- NAME = 'DietRB'
- MAJOR = 0
- MINOR = 5
- TINY = 1
-
- STRING = [MAJOR, MINOR, TINY].join('.')
- DESCRIPTION = "#{NAME} (#{STRING})"
- end
-
- def self.version
- IRB::VERSION::DESCRIPTION
- end
- end