wire-framework 0.1.4.19 → 0.1.4.20

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/app/cache.rb +2 -2
  3. data/lib/wire.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb4a8f0973cc2f097cb6aa491c1947a9b020bd2a
4
- data.tar.gz: a8e54bbb514cf88e1bf85c2adbab9a368d33872b
3
+ metadata.gz: f7a6b716afe81cd04c02ed509fff433e8b32ecf1
4
+ data.tar.gz: 3d314640e5532a6a618a7a1ef63d1fa5b8bd1cc8
5
5
  SHA512:
6
- metadata.gz: 7c8675de6221645b886a694be5537c0b0215b05e7c328b7596ce464dc0ff5477742664bb1cf0e3249fa56651d49d79afbb0903ea42077349fdd12eb8d6fa8cba
7
- data.tar.gz: 9b615c21d2e35075fab527482fa3527df7be294398c6c90a4f829c5d150c5cece7d0d00226c155b3ab7f332e7ef7b11424fed83e6603e0b023612b50b393ebaf
6
+ metadata.gz: bb531cf9c3065f9868e233f7f32b7f41793f098edefc15b861f361546574c6d30447226ddd61f96558466d69548245cbb83adb29a310f8e1d8dc9110ceee196e
7
+ data.tar.gz: 3c7b1a827fc856658b523d31925afbcb381082ff1b42ea246b2b107599461efb23041739916ce55eea9b37648dfb431546149ad136db53ee610e7ba8d6b97362
data/lib/app/cache.rb CHANGED
@@ -25,7 +25,7 @@ module Cache
25
25
  if result[0] == 200
26
26
  env.transaction do
27
27
  if context.action == :delete
28
- db.destroy(uri)
28
+ db.delete(uri)
29
29
  else
30
30
  db[uri] = result[2]
31
31
  end
@@ -60,7 +60,7 @@ module Cache
60
60
  result = 200
61
61
  env.transaction do
62
62
  begin
63
- db.destroy(uri)
63
+ db.delete(uri)
64
64
  rescue
65
65
  result = 404
66
66
  end
data/lib/wire.rb CHANGED
@@ -24,5 +24,5 @@ end
24
24
  # @author Bryan T. Meyers
25
25
  module Wire
26
26
  # Current version of the Wire Gem
27
- VERSION = '0.1.4.19'
27
+ VERSION = '0.1.4.20'
28
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wire-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.19
4
+ version: 0.1.4.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan T. Meyers