hoodie 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/hoodie.gemspec +1 -1
- data/lib/hoodie/stash/disk_store.rb +3 -1
- data/lib/hoodie/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff2458695208711c724a6671388e22ecd83099e8
|
|
4
|
+
data.tar.gz: 74ed7e3f9bb3872257bb65e3b5eaac1328feb91d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd2fdfb5db788a96acd63ce7d060d44b7be78d78237d3cce3f25d80f2a0a9e4d7e01781264f386ee42ddae8ea59a9527e519141998f3fe63bfb6b419039e5d29
|
|
7
|
+
data.tar.gz: 1b4f584e16a8a4aa27cfa10cc17f88cf3b20d2a8352e6e175e66e1a584f5c819719f8290b63c76f4378cc42db316f1a51c731d8a4a9b4e1654e59bf030a51564
|
data/hoodie.gemspec
CHANGED
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
|
|
|
29
29
|
gem.description = 'A collection of hipster methods and hoodie tools to ' \
|
|
30
30
|
'make even the nerdy rubyist look cool.'
|
|
31
31
|
gem.summary = 'Pragmatic hoodie concurrency hipster with ruby'
|
|
32
|
-
gem.homepage = 'https://github.com/riddopic/
|
|
32
|
+
gem.homepage = 'https://github.com/riddopic/hoodie'
|
|
33
33
|
gem.license = 'Apache 2.0'
|
|
34
34
|
|
|
35
35
|
gem.require_paths = [ 'lib' ]
|
|
@@ -105,8 +105,10 @@ module DiskStash
|
|
|
105
105
|
def file_store
|
|
106
106
|
if OS.windows?
|
|
107
107
|
win_friendly_path('/chef/._stash_')
|
|
108
|
+
elsif OS.mac?
|
|
109
|
+
::File.join(::File::SEPARATOR, 'var', 'tmp', '._stash')
|
|
108
110
|
else
|
|
109
|
-
::File.join(::File::SEPARATOR, 'var', 'lib', '.
|
|
111
|
+
::File.join(::File::SEPARATOR, 'var', 'lib', '._stash')
|
|
110
112
|
end
|
|
111
113
|
end
|
|
112
114
|
|
data/lib/hoodie/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoodie
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefano Harding
|
|
@@ -345,7 +345,7 @@ files:
|
|
|
345
345
|
- lib/hoodie/timers.rb
|
|
346
346
|
- lib/hoodie/utils.rb
|
|
347
347
|
- lib/hoodie/version.rb
|
|
348
|
-
homepage: https://github.com/riddopic/
|
|
348
|
+
homepage: https://github.com/riddopic/hoodie
|
|
349
349
|
licenses:
|
|
350
350
|
- Apache 2.0
|
|
351
351
|
metadata: {}
|