Class: Igo::Version
- Inherits:
-
Object
- Object
- Igo::Version
- Defined in:
- lib/igo/version.rb
Overview
バージョンクラス
Class Method Summary collapse
-
.igo_ruby ⇒ Object
igo-rubyのRubyGemsバージョンを出力する.
Class Method Details
.igo_ruby ⇒ Object
igo-rubyのRubyGemsバージョンを出力する
8 9 10 11 12 13 14 15 |
# File 'lib/igo/version.rb', line 8 def self.igo_ruby version_file = File.dirname(__FILE__) + '/../../VERSION' version = "" open(version_file) { |igo_ruby_version| version = igo_ruby_version.gets } return version end |