Sha256: ee28f81bd7e8034fa9c282131c0940fb09b502afe922874755d6a9243fcf34f1
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
# encoding: utf-8 module Nanoc # @return [String] A string containing information about this nanoc version # and its environment (Ruby engine and version, Rubygems version if any). def self.version_information gem_info = defined?(Gem) ? "with RubyGems #{Gem::VERSION}" : 'without RubyGems' engine = defined?(RUBY_ENGINE) ? RUBY_ENGINE : 'ruby' res = '' res << "nanoc #{Nanoc::VERSION} © 2007-2015 Denis Defreyne.\n" res << "Running #{engine} #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) on #{RUBY_PLATFORM} #{gem_info}.\n" res end # @return [Boolean] True if the current platform is Windows, def self.on_windows? RUBY_PLATFORM =~ /windows|bccwin|cygwin|djgpp|mingw|mswin|wince/i end end Nanoc3 = Nanoc # Load general requirements require 'digest' require 'enumerator' require 'fileutils' require 'forwardable' require 'pathname' require 'pstore' require 'set' require 'tempfile' require 'thread' require 'time' require 'yaml' require 'English' # Load nanoc require 'nanoc/version' require 'nanoc/base' require 'nanoc/extra' require 'nanoc/data_sources' require 'nanoc/filters' require 'nanoc/helpers'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nanoc-3.8.0 | lib/nanoc.rb |
nanoc-3.7.5 | lib/nanoc.rb |