Skip to content

Commit

Permalink
Merge pull request #1 from movableink/mc/refactor-and-tests
Browse files Browse the repository at this point in the history
Refactor and add tests
  • Loading branch information
mchesler authored Feb 1, 2018
2 parents 4ff8e85 + 91e91f7 commit 9ded56e
Show file tree
Hide file tree
Showing 17 changed files with 1,007 additions and 345 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: ruby
rvm:
- 2.2

bundler_args: "--retry=3"

script:
- rspec spec/
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'
gemspec

group :test do
gem 'rspec', '~> 3.6'
end
42 changes: 42 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
PATH
remote: .
specs:
MovableInkAWS (0.1.0)
aws-sdk (~> 2)

GEM
remote: https://rubygems.org/
specs:
aws-sdk (2.10.21)
aws-sdk-resources (= 2.10.21)
aws-sdk-core (2.10.21)
aws-sigv4 (~> 1.0)
jmespath (~> 1.0)
aws-sdk-resources (2.10.21)
aws-sdk-core (= 2.10.21)
aws-sigv4 (1.0.1)
diff-lcs (1.3)
jmespath (1.3.1)
rspec (3.6.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
rspec-mocks (~> 3.6.0)
rspec-core (3.6.0)
rspec-support (~> 3.6.0)
rspec-expectations (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-mocks (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-support (3.6.0)

PLATFORMS
ruby

DEPENDENCIES
MovableInkAWS!
rspec (~> 3.6)

BUNDLED WITH
1.15.1
Loading

0 comments on commit 9ded56e

Please sign in to comment.