lib/ghit.rb in ghit-0.1.0 vs lib/ghit.rb in ghit-0.2.0
- old
+ new
@@ -1,9 +1,13 @@
require "ghit/version"
+require 'github_api'
+require 'rainbow'
module Ghit
- autoload :RepoLocator, 'ghit/repo_locator.rb'
- autoload :Errors, 'ghit/errors.rb'
- autoload :HttpRemoteUrlBuilder, 'ghit/http_remote_url_builder.rb'
- autoload :SshRemoteUrlBuilder, 'ghit/ssh_remote_url_builder.rb'
- autoload :RemoteExtracter, 'ghit/remote_extracter.rb'
+ autoload :Globals, 'ghit/globals'
+ autoload :HttpGlobals, 'ghit/http_globals'
+ autoload :SshGlobals, 'ghit/ssh_globals'
+ autoload :RepoLocator, 'ghit/repo_locator'
+ autoload :Errors, 'ghit/errors'
+ autoload :RemoteExtracter, 'ghit/remote_extracter'
+ autoload :Stats, 'ghit/stats'
end