lib/nanoc.rb in nanoc-3.6.5 vs lib/nanoc.rb in nanoc-3.6.6
- old
+ new
@@ -1,12 +1,9 @@
# encoding: utf-8
module Nanoc
- # The current nanoc version.
- VERSION = '3.6.5'
-
# @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"
@@ -32,9 +29,10 @@
require 'thread'
require 'time'
require 'yaml'
# Load nanoc
+require 'nanoc/version'
require 'nanoc/base'
require 'nanoc/extra'
require 'nanoc/data_sources'
require 'nanoc/filters'
require 'nanoc/helpers'