dynamodb-streams-client 0.0.3 → 0.0.4
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 +4 -4
- data/README.md +1 -0
- data/lib/dynamodb/streams/client/cli.rb +3 -0
- data/lib/dynamodb/streams/client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d50f475ca348bcf9b3d43caad6a596595dbc8a2
|
|
4
|
+
data.tar.gz: 55a1b5e4ffb6f1c70fbde1ce3afce10d189cb9cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 023c706f115166fc708637b2345d42089284fb5ff4d6399fdfadb02eeeab6dec6a4d6ec523617a8a56f938907c17854bdc56d737a11a06571930f538646261fa
|
|
7
|
+
data.tar.gz: 243cf631c2139e65cb04902cd9e3af5f9fb7718cedff74b5516bf9be0ccf4dc02d087a345662a00f3e8d66a6aeb1ebdda7b7fe36fb4ac0908ca0eaad93581c53
|
data/README.md
CHANGED
|
@@ -7,6 +7,7 @@ class DynamoDB::Streams::Client::CLI < Thor
|
|
|
7
7
|
class_option 'secret-key', :aliases => '-s'
|
|
8
8
|
class_option 'endpoint', :aliases => '-e'
|
|
9
9
|
class_option 'region', :aliases => '-r'
|
|
10
|
+
class_option 'debug'
|
|
10
11
|
|
|
11
12
|
desc 'list_streams', 'Returns an array of stream IDs'
|
|
12
13
|
def list_streams
|
|
@@ -98,6 +99,8 @@ class DynamoDB::Streams::Client::CLI < Thor
|
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
@client = DynamoDB::Streams::Client.new(client_options)
|
|
102
|
+
@client.debug = true if options['debug']
|
|
103
|
+
@client
|
|
101
104
|
end
|
|
102
105
|
end
|
|
103
106
|
end
|