DynamoLocalRuby
Ruby wrapper around DynamoLocal to enable easier testing of your Ruby code that uses Dynamo.
Installation
Add this line to your application's Gemfile:
gem 'dynamo-local-ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dynamo-local-ruby
Usage
In your application code, initialize Dynamo clients with
Aws::DynamoDB::Client.new(endpoint: DynamoLocalRuby::DynamoDBLocal.endpoint)
Before the test suite starts (for instance in RSpec's config.before(:suite)
).
DynamoLocalRuby::DynamoDBLocal.up
When cleaning up test suite (for instance in RSpec's config.after(:suite)
)
DynamoLocalRuby::DynamoDBLocal.down
Contributing
- Fork it ( https://github.com/[my-github-username]/dynamo-local-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request