aws_secrets_loader 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: caf8ea66b15006a4078a08b4c6ce1297b5ec93ae12ed7f33eafdbc49ff7e86cf
4
- data.tar.gz: 1545b5793f647fb506078e4c7a502108385a230b612200f75bc880aaa8dd6d0a
3
+ metadata.gz: c46c0386270414c923e0ccd3e60fad376333c6c44e9aa5ccec0a8fe735bdf6d8
4
+ data.tar.gz: 625dc47f6d5b42ec388dd4a2174b29d055aea701e574e7d0e91ebd6d3a4f1d32
5
5
  SHA512:
6
- metadata.gz: f2dd7f6f9bf3638b0a6d6841ea817519c819713c390fc93f6234670cc720f7a9c8d11374b8f97f9d3741743c7a52e6b55f9d75fff481dc3666f0f55959676766
7
- data.tar.gz: 8f6b46ae81372e5d81480761df7e9f68e516d1b5f3de12b31a9fb57fa3cbfde53285197164f0a450f7512580460d954c9f89fe51ce5093eac8bc2c21beb0019c
6
+ metadata.gz: 4b25e560025a734ace99dc40f6c45ec6659f4868c2c209a04ad968e9b205d6be9af976fe6df6839adf51f13a3dfcfa0f0c97376b64032ddec787b37ce2f0275d
7
+ data.tar.gz: fa984b6d4e0981bf3871d60ba92c85f0f5fa486a0cb71a4572fcbefa33c1a83220902ba7e879a09114cc2b18cd22ca36c9e4585f10d9b774ce3aa2fb0fb644bb
@@ -0,0 +1,33 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ main ]
13
+ pull_request:
14
+ branches: [ main ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
26
+ # uses: ruby/setup-ruby@v1
27
+ uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
28
+ with:
29
+ ruby-version: 2.6
30
+ - name: Install dependencies
31
+ run: bundle install
32
+ - name: Run tests
33
+ run: bundle exec rake
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aws_secrets_loader (0.1.2)
4
+ aws_secrets_loader (0.1.3)
5
5
  aws-sdk-secretsmanager
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ ![Ruby](https://github.com/iagopiimenta/aws_secrets_loader/workflows/Ruby/badge.svg)
2
+ ![Ruby Gem](https://github.com/iagopiimenta/aws_secrets_loader/workflows/Ruby%20Gem/badge.svg)
3
+
1
4
  # AwsSecretsLoader
2
5
 
3
6
  Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/aws_secrets_loader`. To experiment with that code, run `bin/console` for an interactive prompt.
@@ -1,3 +1,3 @@
1
1
  module AwsSecretsLoader
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_secrets_loader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iago
@@ -32,6 +32,7 @@ extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
34
  - ".github/workflows/gem-push.yml"
35
+ - ".github/workflows/ruby.yml"
35
36
  - ".gitignore"
36
37
  - ".rspec"
37
38
  - ".travis.yml"