dynamo-store 0.0.1 → 1.0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76f60dcccc9caa1fd7611e4ba07a427994098a5d4c4d316c837b624ca4773cb9
4
- data.tar.gz: dfad370fb2e1cbc9dc73b569afe81e9aa4ff35a85556d2a99ef1321312f961a5
3
+ metadata.gz: 5616acaff728093d4bbb379bde8046bd4a8abd3fcac764bb64caabe238a3965b
4
+ data.tar.gz: '09e1a882b359386b60d2cbe93ad8eaa4cb9b3863b885b9d7cae4ddf7a90f33a7'
5
5
  SHA512:
6
- metadata.gz: 91e09669046d958821cc392668bab63727050516cfaa638856a925c12dce6b96065d65b941a520eee4ee0bab58c7d1d568ba688ade462ad770d50c171a97b51a
7
- data.tar.gz: 231b8bc2850113163ce3c11398392a8f19f030bfcfd6720d818fb8f49e77d6f1948c662577d447e4e0800c997ce4a005629d6a9c82966ebbcdfe765b533b5bdb
6
+ metadata.gz: 530fe5a7ea7d83b3a54072243e9d759f4557ffbd8ead0cecf32fbe1df7b3ac3f400347aef27e75430d488569ec28e294ade8d9b5150d1ffb14c20938a006ba01
7
+ data.tar.gz: c620a465585d5bdfa95809d75b944210cc4aca2b34cbbbab0f47e2b05992b791c47ef626509e00844a06afe2ec3e5e552043147d9900bafa01d8ebafac293dbd
@@ -0,0 +1,42 @@
1
+ name: Test
2
+
3
+ on: push
4
+
5
+ env:
6
+ ImageOS: ubuntu18
7
+ NOKOGIRI_USE_SYSTEM_LIBRARIES: true
8
+
9
+ jobs:
10
+ run-tests:
11
+ name: Test code
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby:
17
+ - 3.1.1
18
+ - 2.7.5
19
+ services:
20
+ dynamodb:
21
+ image: amazon/dynamodb-local
22
+ ports:
23
+ - 8000/tcp
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+ cache-version: ${{ matrix.ruby }}-0
31
+ - name: Run RSpec
32
+ env:
33
+ AWS_ACCESS_KEY_ID: asdf
34
+ AWS_SECRET_ACCESS_KEY: asdf
35
+ CI: true
36
+ DYNAMODB_HOST: http://localhost:${{job.services.dynamodb.ports[8000]}}/
37
+ run: bundle exec rspec
38
+ - name: Coveralls
39
+ uses: coverallsapp/github-action@v1.1.2
40
+ continue-on-error: true
41
+ with:
42
+ github-token: ${{ secrets.GITHUB_TOKEN }}
data/.gitignore CHANGED
@@ -10,3 +10,5 @@
10
10
 
11
11
  # rspec failure tracking
12
12
  .rspec_status
13
+
14
+ dynamo-store-*.gem
data/Appraisals CHANGED
@@ -1,9 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'active_support-5.0' do
4
- gem 'activesupport', '~> 5.0.0'
5
- end
6
-
7
3
  appraise 'active_support-5.1' do
8
4
  gem 'activesupport', '~> 5.1.0'
9
5
  end
@@ -12,10 +8,6 @@ appraise 'active_support-5.2' do
12
8
  gem 'activesupport', '~> 5.2.0'
13
9
  end
14
10
 
15
- appraise 'aws-sdk-2' do
16
- gem 'aws-sdk', '~> 2.0'
17
- end
18
-
19
11
  appraise 'aws-sdk-3' do
20
12
  gem 'aws-sdk-dynamodb', '~> 1.0'
21
13
  end
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,6 @@
1
+ ## Pushing Code
2
+
3
+ Ensure the following are successful before pushing:
4
+
5
+ * `bundle exec appraisal install`
6
+ * `bundle exec appraisal rpsec`
data/Changelog.md ADDED
@@ -0,0 +1,21 @@
1
+ # 1.0.2.1
2
+
3
+ Fix load order issue which surfaced from activesupport 7
4
+
5
+ # 1.0.2
6
+
7
+ Rake 13 added as a dev requirement
8
+
9
+ # 1.0.1
10
+
11
+ * Ruby 3 support
12
+
13
+ # 1.0.0
14
+
15
+ * Require aws-sdk > 3.0 so that we can specify a smaller subset of gems
16
+ * Remove support for ActiveSupport < 5.1
17
+ * Remove support for Ruby < 2.6
18
+
19
+ # 0.0.1
20
+
21
+ * Initial release