OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/vendor/plugins/gloc-1.1.0/lib/gloc-version.rb

12 lines
282 B

module GLoc
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
TINY = nil
STRING= [MAJOR, MINOR, TINY].delete_if{|x|x.nil?}.join('.')
def self.to_s; STRING end
end
end
puts "NOTICE: You are using a dev version of GLoc." if GLoc::VERSION::TINY == 'DEV'