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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cc0aa590a3b2c835e20cf06b6a5f3b05d8dcc63f
4
- data.tar.gz: 6c726caf62c67d0616568029f1b3a421a5a74310
3
+ metadata.gz: 9d50f475ca348bcf9b3d43caad6a596595dbc8a2
4
+ data.tar.gz: 55a1b5e4ffb6f1c70fbde1ce3afce10d189cb9cf
5
5
  SHA512:
6
- metadata.gz: f73c51247af46e2a1570af218b20759f9026cdc6ce4463795eb8bcf52c53def4e78d264f6c9d3d46373b6146708307da111b6e2fa7815302e1fa53c1203b4cd7
7
- data.tar.gz: 9abc3e1ae742ead23924aaddf815cffe077243c15eb2816a1480c8218abeb2b17d7526cec0eaee99c1919e7d057239e498bb06e1aae3360d4679065a8ca0447a
6
+ metadata.gz: 023c706f115166fc708637b2345d42089284fb5ff4d6399fdfadb02eeeab6dec6a4d6ec523617a8a56f938907c17854bdc56d737a11a06571930f538646261fa
7
+ data.tar.gz: 243cf631c2139e65cb04902cd9e3af5f9fb7718cedff74b5516bf9be0ccf4dc02d087a345662a00f3e8d66a6aeb1ebdda7b7fe36fb4ac0908ca0eaad93581c53
data/README.md CHANGED
@@ -54,6 +54,7 @@ Options:
54
54
  -s, [--secret-key=SECRET-KEY]
55
55
  -e, [--endpoint=ENDPOINT]
56
56
  -r, [--region=REGION]
57
+ [--debug=DEBUG]
57
58
  ```
58
59
 
59
60
  ### Follow record
@@ -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
@@ -1,7 +1,7 @@
1
1
  module DynamoDB
2
2
  module Streams
3
3
  class Client
4
- VERSION = '0.0.3'
4
+ VERSION = '0.0.4'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamodb-streams-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara