From 466d0e8f666ac546efc0ed89420d8ea91a287e7c Mon Sep 17 00:00:00 2001 From: danijoo Date: Wed, 1 Jan 2014 19:43:32 +0100 Subject: [PATCH] fixed wrong require call in some classes --- lib/sightstone/match_history.rb | 3 +-- lib/sightstone/player_stats_summary.rb | 1 - lib/sightstone/ranked_stats.rb | 1 - sightstone.gemspec | 2 +- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/sightstone/match_history.rb b/lib/sightstone/match_history.rb index 10a36c5..6a51434 100644 --- a/lib/sightstone/match_history.rb +++ b/lib/sightstone/match_history.rb @@ -1,4 +1,3 @@ -require 'sightstone/stat' # match history of a summoner # @attr [Fixnum] summonerId ID of the summoner @@ -88,4 +87,4 @@ class Stat data['count'] end end -end \ No newline at end of file +end diff --git a/lib/sightstone/player_stats_summary.rb b/lib/sightstone/player_stats_summary.rb index 4e64e15..4ceba47 100644 --- a/lib/sightstone/player_stats_summary.rb +++ b/lib/sightstone/player_stats_summary.rb @@ -1,4 +1,3 @@ -require 'sightstone/stat' # summary of player statistic # @attr [Fixnum] summonerId ID of the summoner diff --git a/lib/sightstone/ranked_stats.rb b/lib/sightstone/ranked_stats.rb index 4be7fc7..77b6328 100644 --- a/lib/sightstone/ranked_stats.rb +++ b/lib/sightstone/ranked_stats.rb @@ -1,4 +1,3 @@ -require 'sightstone/stat' # Ranked stats of a summoner # @attr [Fixnum] modifyDate date of last modification # @attr [Fixnum] summonerId id of the summoner diff --git a/sightstone.gemspec b/sightstone.gemspec index c1dd27f..9f07d9e 100644 --- a/sightstone.gemspec +++ b/sightstone.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'sightstone' - s.version = '0.9.0' + s.version = '0.9.1' s.date = '2014-01-01' s.summary = 'Ruby wrapper for riots league of legends api' s.description = s.summary