gameon-redis 0.0.0.pre20 → 0.0.0.pre21

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gameon-redis/base.rb +5 -4
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8d5157b5cce6df802a697fe57f7b17226318992
4
- data.tar.gz: d903c915876ea4deefe124a119a252453b6f2490
3
+ metadata.gz: 0d9a0c99d2a6a42f90a6e84d7d93be385185acc2
4
+ data.tar.gz: 6334bcc2d062206951bfc2100eb03b03303c6fef
5
5
  SHA512:
6
- metadata.gz: 38a6766e69d743d8ad2bbf331d96f663f42df641875ad57f70fee48e6621e46ed405f50c05a4b2d225ff68f75cd69ceb9ffc6e769230e1e9fa6925205b4e2004
7
- data.tar.gz: c235ed66bad0db4bcd0a17b2e845a2c31158519caa22b1d79a226485da5a0b812029c1d9c7d034a8a982765f049e4335619362a0cc4674e5d5a7ece7f9378261
6
+ metadata.gz: 2d0aeff98eff329e1c557526432b2e01e0105803524387763471b2d23ac16a9717a0ce06d45530c33bc5c365c8698b57ad9967ac68a966b74fec44709d985dee
7
+ data.tar.gz: 56d592272a866317cc7d6d5bb75e99f11961b3bc3b6d3d8a55aaf6660d2b8ae719964134c13539868ffe21150bdd00596b9e5e840b9aabadad1b44be5c4b0696
@@ -19,7 +19,8 @@ module GameOn
19
19
  end
20
20
 
21
21
  def call(env)
22
- if DS.exists?(@id)
22
+ p "GameOn::Persistence::DS instance id = #{@id}"
23
+ if self.exists? @id
23
24
  #if (@@redis.get @id ) && (Marshal.load @@redis.get @id)
24
25
  env[:gameon] = DS.load @id
25
26
  p "resotred #{env[:gameon]}"
@@ -29,7 +30,7 @@ module GameOn
29
30
  env[:gameon].id = @id
30
31
  end
31
32
  @app.call(env)
32
- DS.store env[:gameon]
33
+ self.store env[:gameon]
33
34
  p "stored #{env[:gameon]}"
34
35
  end
35
36
 
@@ -45,10 +46,10 @@ module GameOn
45
46
 
46
47
  def DS.exists? id
47
48
  if (@@redis.get id) && (Marshal.load @@redis.get id)
48
- p true
49
+ p "GameOn::Persistence::DS.exists? true"
49
50
  return true
50
51
  else
51
- p false
52
+ p "GameOn::Persistence::DS.exists? false"
52
53
  return false
53
54
  end
54
55
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gameon-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.pre20
4
+ version: 0.0.0.pre21
5
5
  platform: ruby
6
6
  authors:
7
7
  - theotherstupidguy