Sha256: e882c04a1491598b7e3f8556619e75f0ead02b3978a765d70fd3d62ef91b8f5a
Contents?: true
Size: 854 Bytes
Versions: 1
Compression:
Stored size: 854 Bytes
Contents
# # = bio/version.rb - BioRuby version information # # Copyright:: Copyright (C) 2001-2012 # Toshiaki Katayama <k@bioruby.org>, # Naohisa Goto <ng@bioruby.org> # License:: The Ruby License # module Bio # BioRuby version (Array containing Integer) BIORUBY_VERSION = [2, 0, 2].extend(Comparable).freeze # Extra version specifier (String or nil). # Existance of the value indicates development version. # # nil :: Release version. # ".pre :: Pre-release version. # # References: https://guides.rubygems.org/patterns/#prerelease-gems BIORUBY_EXTRA_VERSION = nil #".pre" # Version identifier, including extra version string (String) # Unlike BIORUBY_VERSION, it is not comparable. BIORUBY_VERSION_ID = (BIORUBY_VERSION.join('.') + BIORUBY_EXTRA_VERSION.to_s).freeze end #module Bio
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bio-2.0.2 | lib/bio/version.rb |