lib/foot_stats.rb in foot_stats-0.0.1 vs lib/foot_stats.rb in foot_stats-0.1.0
- old
+ new
@@ -1,14 +1,25 @@
+require 'singleton'
+require 'digest/md5'
+
+require 'json'
+require 'rest-client'
+
require 'foot_stats/version'
module FootStats
- autoload :Championship, 'foot_stats/championship'
+ autoload :AttributeAccessor, 'foot_stats/attribute_accessor'
+ autoload :Championship, 'foot_stats/championship'
autoload :ChampionshipClassification, 'foot_stats/championship_classification'
- autoload :ErrorResponse, 'foot_stats/error_response'
- autoload :Match, 'foot_stats/match'
- autoload :Narration, 'foot_stats/narration'
- autoload :Resource, 'foot_stats/resource'
- autoload :Request, 'foot_stats/request'
- autoload :Response, 'foot_stats/response'
- autoload :Team, 'foot_stats/team'
- autoload :Setup, 'foot_stats/setup'
+ autoload :ErrorResponse, 'foot_stats/error_response'
+ autoload :Live, 'foot_stats/live'
+ autoload :Match, 'foot_stats/match'
+ autoload :Narration, 'foot_stats/narration'
+ autoload :Player, 'foot_stats/player'
+ autoload :Request, 'foot_stats/request'
+ autoload :Resource, 'foot_stats/resource'
+ autoload :Response, 'foot_stats/response'
+ autoload :RoundMatch, 'foot_stats/round_match'
+ autoload :Setup, 'foot_stats/setup'
+ autoload :Stream, 'foot_stats/stream'
+ autoload :Team, 'foot_stats/team'
end