simple_record 1.1.31 → 1.1.32
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/simple_record.rb +2 -2
- data/test/test_simple_record.rb +3 -0
- metadata +2 -2
data/lib/simple_record.rb
CHANGED
|
@@ -53,11 +53,11 @@ module SimpleRecord
|
|
|
53
53
|
# :pool (uses a connection pool with a maximum number of connections - NOT IMPLEMENTED YET)
|
|
54
54
|
# :logger => Logger Object # Logger instance: logs to STDOUT if omitted
|
|
55
55
|
def self.establish_connection(aws_access_key=nil, aws_secret_key=nil, params={})
|
|
56
|
-
|
|
56
|
+
Aws::ActiveSdb.establish_connection(aws_access_key, aws_secret_key, params)
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
def self.close_connection()
|
|
60
|
-
|
|
60
|
+
Aws::ActiveSdb.close_connection
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
class Base < Aws::ActiveSdb::Base
|
data/test/test_simple_record.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_record
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.32
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Travis Reeder
|
|
@@ -11,7 +11,7 @@ autorequire:
|
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
13
|
|
|
14
|
-
date: 2009-11-
|
|
14
|
+
date: 2009-11-12 00:00:00 -08:00
|
|
15
15
|
default_executable:
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|