lib/nanoc.rb in nanoc-4.8.19 vs lib/nanoc.rb in nanoc-4.9.0
- old
+ new
@@ -1,24 +1,25 @@
# frozen_string_literal: true
# Load external dependencies
require 'addressable'
+require 'ddmemoize'
+require 'ddmetrics'
require 'ddplugin'
require 'hamster'
+require 'parallel'
require 'ref'
require 'slow_enumerator_tools'
-require 'ddmemoize'
-require 'ddtelemetry'
-DDMemoize.enable_telemetry
+DDMemoize.enable_metrics
module Nanoc
# @return [String] A string containing information about this Nanoc version
# and its environment (Ruby engine and version, Rubygems version if any).
#
# @api private
def self.version_information
- "Nanoc #{Nanoc::VERSION} © 2007-2017 Denis Defreyne.\n" \
+ "Nanoc #{Nanoc::VERSION} © 2007-2018 Denis Defreyne.\n" \
"Running #{RUBY_ENGINE} #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) on #{RUBY_PLATFORM} with RubyGems #{Gem::VERSION}.\n"
end
# @return [Boolean] True if the current platform is Windows, false otherwise.
#