fake_dynamo 0.2.2 → 0.2.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa98039cb0185d49b68cf2c5d7f4fc2e397b46d5
4
- data.tar.gz: 46c7912a403e2a286845ac5adeed6222f165581b
3
+ metadata.gz: f5b33d3831cfed29e43bc2069f399848d8ce85b0
4
+ data.tar.gz: 18b3f3f18376a1983da21a68db5173b7dc8d9a3c
5
5
  SHA512:
6
- metadata.gz: 6e44b53a1d8bfc7635386a0723bac32b24e09bc796a480499934aec4bc72b3682b52946d3ebc76d8f0fdcc1b4b330b841c1d2250c213f8fb8f70020f5f0c8da3
7
- data.tar.gz: c71684a8780aa64b655b33dcca221979114e7986940d12016d3955fed1075c337d567bd3206dc72eafbd91e72b98064ca17b3bbfebd0ed5b6de9f829168abc13
6
+ metadata.gz: 76808c298df2b11d7ef08e42c282db6f3769e66208386157f244f22b7a9f27852e71a0919d14c6d8531c41fb3e303f21273a6613276a0d58ed48ae29d85de03f
7
+ data.tar.gz: adda14d9f182d9c0fe9f9722aac1b5580bfe90bfbe749e32e709b73446621236a281bbd7371efd90802eb49f87760cff07f0f75b9f7db1416ceaab8ff64c5019
data/README.md CHANGED
@@ -6,7 +6,7 @@ local hosted, inmemory Amazon DynamoDB emulator.
6
6
 
7
7
  | Amazon DynamoDB | FakeDynamo |
8
8
  | --------------- | ----------- |
9
- | 2012-08-10 | 0.2.2 |
9
+ | 2012-08-10 | 0.2.3 |
10
10
  | 2011-12-05 | 0.1.3 |
11
11
 
12
12
 
data/bin/fake_dynamo CHANGED
@@ -67,7 +67,9 @@ end
67
67
 
68
68
  FakeDynamo::Storage.instance.load_aof
69
69
  FakeDynamo::Server.run!(:port => options[:port], :bind => options[:bind]) do |server|
70
- server.config[:AccessLog] = []
70
+ if server.respond_to?('config') && server.config.respond_to?('[]=')
71
+ server.config[:AccessLog] = []
72
+ end
71
73
  end
72
74
 
73
75
  at_exit {
@@ -1,3 +1,3 @@
1
1
  module FakeDynamo
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fake_dynamo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anantha Kumaran
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-04 00:00:00.000000000 Z
11
+ date: 2013-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra