jira-ruby-dmg 0.1.25 → 0.1.26

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a52f74480f9d125ff8324c948295cca2104b7299
4
- data.tar.gz: a5a79b7ee66c141e2f98c82e9cc542dfef215a02
3
+ metadata.gz: 093e577719204dddf2b89bfd9e75df335dcfb282
4
+ data.tar.gz: 76cfd005c7ffe78cdf80492266fa86d21d9c6324
5
5
  SHA512:
6
- metadata.gz: 022ff0631158b910d019346c2c41d2692d719c744226644e0ce4d5a8d0295cd0cf4767c06147630c5e0b1b3092d63a56ea11d85cf0f40a908eb7647349c0c9c9
7
- data.tar.gz: 83f626e7dfc93b680c34b99dac9a3af4c65459833ea4cefdaf3bae542a984af25d84898c6b5f891d7bda43dc08caaa8b3f590c4ef7d37e823aaf08ce72ea9770
6
+ metadata.gz: 7821ce9579dff2a9928a186d7db087b13ef9997fc83a5d598d80f4f687bd7deffe7fbcf0b43cb7defc3532b35d0a1213f1d95af42c3d269fc33ee158fb8cc9eb
7
+ data.tar.gz: d643dc5fb77ca544d731673e0d33e17b088f5d4763fe166620b73f5ce464896abeb877a7132d99133e4169b39fd638a22547aad6338547772fcf54a61f55b9b7
@@ -29,7 +29,7 @@ module JIRA
29
29
  'timestamp' => now
30
30
  }
31
31
 
32
- cache_file(uri, 'w+').write(Marshal.dump(new_cache))
32
+ cache_file(uri, 'w+b').write(Marshal.dump(new_cache))
33
33
  end
34
34
 
35
35
 
@@ -49,7 +49,7 @@ module JIRA
49
49
 
50
50
  def cache(uri)
51
51
  if File.exists? cache_path(uri)
52
- Marshal.restore(cache_file(uri, 'r+').read())
52
+ Marshal.restore(cache_file(uri, 'r+b').read())
53
53
  else
54
54
  {}
55
55
  end
data/lib/jira/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module JIRA
2
- VERSION = "0.1.25"
2
+ VERSION = "0.1.26"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jira-ruby-dmg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.25
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - ThisIs! DMG