sessionm-cassandra 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1090,4 +1090,25 @@ class Cassandra
1090
1090
  @servers
1091
1091
  end
1092
1092
  end
1093
+
1094
+ public
1095
+
1096
+ # method required by ActiveRecord::ConnectionAdapters::ConnectionPool
1097
+ def run_callbacks(method)
1098
+ end
1099
+
1100
+ def verify!
1101
+ end
1102
+
1103
+ def _run_checkin_callbacks
1104
+ yield if block_given?
1105
+ end
1106
+
1107
+ def requires_reloading?
1108
+ true
1109
+ end
1110
+
1111
+ def connected?
1112
+ @client && @client.current_server
1113
+ end
1093
1114
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "sessionm-cassandra"
5
- s.version = "1.0.1"
5
+ s.version = "1.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0.8") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Evan Weaver, Ryan King", "Kris Lange"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 1
9
- version: 1.0.1
8
+ - 2
9
+ version: 1.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Evan Weaver, Ryan King