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 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
- RightAws::ActiveSdb.establish_connection(aws_access_key, aws_secret_key, params)
56
+ Aws::ActiveSdb.establish_connection(aws_access_key, aws_secret_key, params)
57
57
  end
58
58
 
59
59
  def self.close_connection()
60
- RightAws::ActiveSdb.close_connection
60
+ Aws::ActiveSdb.close_connection
61
61
  end
62
62
 
63
63
  class Base < Aws::ActiveSdb::Base
@@ -6,6 +6,9 @@ require 'my_model'
6
6
  require 'my_child_model'
7
7
  require 'active_support'
8
8
 
9
+ # Tests for SimpleRecord
10
+ #
11
+
9
12
  class TestSimpleRecord < Test::Unit::TestCase
10
13
 
11
14
  def setup
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.31
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-11 00:00:00 -08:00
14
+ date: 2009-11-12 00:00:00 -08:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency