psenv 0.4.0 → 0.6.0
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 +5 -5
- data/.github/workflows/ruby.yml +36 -0
- data/.travis.yml +1 -0
- data/lib/psenv/version.rb +1 -1
- data/psenv-rails.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 3d732258f7fdb38b72751e02f404b2302b06e8723fa2942a31993452de907046
|
|
4
|
+
data.tar.gz: 4fe9cdaddf7fc6c00d48b036055e405b2a31bf2ae2f8a92ea09c5dcf090254dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ec89797ab460fe4a2294a25279b1a93f9b77d51a746b017065b6076c60bffee2330d18dac7de331407f19d8467d0aad4c1d87b282f53348e69818c3b2e5a6d1
|
|
7
|
+
data.tar.gz: 23ed32cf7985c5d76a0962f36191652f1aa93d36d45a8b5c61060a7871fee7aa6056d8889f175b74c0a6c4b9db87949931e076a88d5b50ce9575ffd802ebedad
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Ruby
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
lint:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
steps:
|
|
9
|
+
- uses: actions/checkout@v1
|
|
10
|
+
- name: Set up Ruby 2.6
|
|
11
|
+
uses: actions/setup-ruby@v1
|
|
12
|
+
with:
|
|
13
|
+
ruby-version: 2.6.x
|
|
14
|
+
- name: Build and test with Rake
|
|
15
|
+
run: |
|
|
16
|
+
gem install bundler -v 1.16
|
|
17
|
+
bundle install --jobs 4 --retry 3
|
|
18
|
+
bundle exec rubocop
|
|
19
|
+
|
|
20
|
+
test:
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
strategy:
|
|
23
|
+
matrix:
|
|
24
|
+
ruby_version: [2.4.x, 2.5.x, 2.6.x]
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v1
|
|
28
|
+
- name: Set up Ruby ${{ matrix.ruby_version }}
|
|
29
|
+
uses: actions/setup-ruby@v1
|
|
30
|
+
with:
|
|
31
|
+
ruby-version: ${{ matrix.ruby_version }}
|
|
32
|
+
- name: Build and test with Rake
|
|
33
|
+
run: |
|
|
34
|
+
gem install bundler -v 1.16
|
|
35
|
+
bundle install --jobs 4 --retry 3
|
|
36
|
+
bundle exec rspec
|
data/.travis.yml
CHANGED
data/lib/psenv/version.rb
CHANGED
data/psenv-rails.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: psenv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Tomaka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -115,6 +115,7 @@ executables: []
|
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
117
117
|
files:
|
|
118
|
+
- ".github/workflows/ruby.yml"
|
|
118
119
|
- ".gitignore"
|
|
119
120
|
- ".rspec"
|
|
120
121
|
- ".rubocop.yml"
|
|
@@ -151,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
152
|
- !ruby/object:Gem::Version
|
|
152
153
|
version: '0'
|
|
153
154
|
requirements: []
|
|
154
|
-
|
|
155
|
-
rubygems_version: 2.6.13
|
|
155
|
+
rubygems_version: 3.0.3
|
|
156
156
|
signing_key:
|
|
157
157
|
specification_version: 4
|
|
158
158
|
summary: Load AWS SSM Parameter Store values into your environment.
|