hashcache 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/hashcache.rb +1 -1
  2. metadata +1 -1
data/lib/hashcache.rb CHANGED
@@ -47,7 +47,7 @@ class HashCache
47
47
  end
48
48
 
49
49
  def write_file(item, obj)
50
- File.open(item, 'w+') {|f| Marshal.dump(obj, f) }
50
+ File.open(@file_path + '/' + item, 'w+') {|f| Marshal.dump(obj, f) }
51
51
  end
52
52
 
53
53
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hashcache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors: []
7
7