sessionm-cassandra 1.0.1 → 1.0.2
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.
- data/lib/cassandra/cassandra.rb +21 -0
- data/sessionm-cassandra.gemspec +1 -1
- metadata +2 -2
data/lib/cassandra/cassandra.rb
CHANGED
|
@@ -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
|
data/sessionm-cassandra.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "sessionm-cassandra"
|
|
5
|
-
s.version = "1.0.
|
|
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"]
|