Skip to content

Commit 05106d9

Browse files
committed
hyperstack update for redis warning
1 parent ed49ef5 commit 05106d9

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

HYPERSTACK_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'1.0.alpha1.8.0005'
1+
'1.0.alpha1.8.0006'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module Component
3-
VERSION = '1.0.alpha1.8.0005' # '1.0.alpha1.5'
3+
VERSION = '1.0.alpha1.8.0006' # '1.0.alpha1.5'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperloop
22
module Console
3-
VERSION = '1.0.alpha1.8.0005'
3+
VERSION = '1.0.alpha1.8.0006'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperI18n
2-
VERSION = '1.0.alpha1.8.0005'
2+
VERSION = '1.0.alpha1.8.0006'
33
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module I18n
3-
VERSION = '1.0.alpha1.8.0005'
3+
VERSION = '1.0.alpha1.8.0006'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperModel
2-
VERSION = '1.0.alpha1.8.0005'
2+
VERSION = '1.0.alpha1.8.0006'
33
end

ruby/hyper-operation/lib/hyper-operation/transport/connection_adapter/redis/redis_record.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def save
123123
self.class.client.hmset("#{table_name}:#{id}", *self.class.jsonize_attributes(attributes))
124124

125125
unless self.class.client.smembers(table_name).include?(id)
126-
self.class.client.sadd(table_name, id)
126+
self.class.client.sadd?(table_name, id)
127127
end
128128

129129
true
@@ -135,7 +135,7 @@ def update(opts = {})
135135
end
136136

137137
def destroy
138-
self.class.client.srem(table_name, id)
138+
self.class.client.srem?(table_name, id)
139139

140140
self.class.client.hdel("#{table_name}:#{id}", attributes.keys)
141141

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
class Operation
3-
VERSION = '1.0.alpha1.8.0005'
3+
VERSION = '1.0.alpha1.8.0006'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperRouter
2-
VERSION = '1.0.alpha1.8.0005'
2+
VERSION = '1.0.alpha1.8.0006'
33
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperSpec
2-
VERSION = '1.0.alpha1.8.0005'
2+
VERSION = '1.0.alpha1.8.0006'
33
end

0 commit comments

Comments
 (0)