lib/sunzi.rb in sunzi-rails-0.2.7 vs lib/sunzi.rb in sunzi-rails-0.2.8

- old
+ new

@@ -1,20 +1,20 @@ +require 'active_support/core_ext/hash/slice' +require 'active_support/core_ext/hash/indifferent_access' +require 'active_support/ordered_hash' +require 'active_support/hash_with_indifferent_access' require 'thor' require 'rainbow' # Starting 2.0.0, Rainbow no longer patches string with the color method by default. require 'rainbow/version' require 'rainbow/ext/string' unless Rainbow::VERSION < '2.0.0' require 'yaml' -require 'active_support/core_ext/hash/slice' -require 'active_support/core_ext/hash/indifferent_access' -require 'active_support/ordered_hash' -require 'active_support/hash_with_indifferent_access' +require 'sunzi/utility' +require 'sunzi/cli' require 'sunzi/cli/capistrano' require 'sunzi/cli/database' require 'sunzi/cli/secrets' -require 'sunzi/cli' require 'sunzi/logger' -require 'sunzi/utility' require 'sunzi/version' module Sunzi end