storage_room 0.3.14 → 0.3.15

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == Version 0.3.15
2
+ * Fix identity map problem on Windows
3
+
1
4
  == Version 0.3.14
2
5
  * Fix deprecation warnings (class_inheritable_accessor)
3
6
 
data/Rakefile CHANGED
@@ -38,7 +38,7 @@ task :spec => :check_dependencies
38
38
 
39
39
  task :default => :spec
40
40
 
41
- require 'rake/rdoctask'
41
+ require 'rdoc/task'
42
42
  Rake::RDocTask.new do |rdoc|
43
43
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
44
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.14
1
+ 0.3.15
@@ -8,7 +8,7 @@ module StorageRoom
8
8
  end
9
9
 
10
10
  def self.models
11
- @models ||= Set.new
11
+ @models ||= ::Set.new
12
12
  end
13
13
 
14
14
  def self.clear
@@ -15,7 +15,7 @@ describe StorageRoom::IdentityMap do
15
15
  describe "#models" do
16
16
  it "should return set" do
17
17
  set = StorageRoom::IdentityMap.models
18
- set.should be_an_instance_of(Set)
18
+ set.should be_an_instance_of(::Set)
19
19
  set.should include(StorageRoom::Resource)
20
20
  end
21
21
  end
data/storage_room.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "storage_room"
8
- s.version = "0.3.14"
8
+ s.version = "0.3.15"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sascha Konietzke"]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: storage_room
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.3.14
5
+ version: 0.3.15
6
6
  platform: ruby
7
7
  authors:
8
8
  - Sascha Konietzke