/lib/irb/version.rb

http://github.com/alloy/dietrb · Ruby · 21 lines · 13 code · 3 blank · 5 comment · 0 complexity · 8d2d29cf58725eabd57b36c78f201dbf MD5 · raw file

  1. # MacRuby implementation of IRB.
  2. #
  3. # This file is covered by the Ruby license. See COPYING for more details.
  4. #
  5. # Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige@gmail.com>
  6. module IRB
  7. module VERSION #:nodoc:
  8. NAME = 'DietRB'
  9. MAJOR = 0
  10. MINOR = 5
  11. TINY = 1
  12. STRING = [MAJOR, MINOR, TINY].join('.')
  13. DESCRIPTION = "#{NAME} (#{STRING})"
  14. end
  15. def self.version
  16. IRB::VERSION::DESCRIPTION
  17. end
  18. end