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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f82834718e3a59e38d86c25d4ba17208643e4118
4
- data.tar.gz: 6c754f5229c5553d0f0c7291f596f6176cda3e64
2
+ SHA256:
3
+ metadata.gz: 3d732258f7fdb38b72751e02f404b2302b06e8723fa2942a31993452de907046
4
+ data.tar.gz: 4fe9cdaddf7fc6c00d48b036055e405b2a31bf2ae2f8a92ea09c5dcf090254dd
5
5
  SHA512:
6
- metadata.gz: 35cea595dc1a361fd9da7a5aac37f94d7adc6ba87d473669758754a08905ac9f1f4f281beb9d8a849b91f2fc75c961e669aecd7c1ed5ee5b2edc59c4c86d5e49
7
- data.tar.gz: ad835dfb3c870d1d10027f36c7dfd3ee173cf393543b2deb6d488cb780c377ef3257342dcab94bcfcbbd09abdfa38271f3c56a999ad4a3f300e29e46d03cf23c
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
@@ -2,6 +2,7 @@ sudo: false
2
2
  cache: bundler
3
3
  language: ruby
4
4
  rvm:
5
+ - 2.6
5
6
  - 2.5
6
7
  - 2.4
7
8
  - 2.3
@@ -1,3 +1,3 @@
1
1
  module Psenv
2
- VERSION = "0.4.0".freeze
2
+ VERSION = "0.6.0".freeze
3
3
  end
@@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ["lib"]
24
24
 
25
25
  spec.add_dependency "psenv", Psenv::VERSION
26
- spec.add_dependency "railties", ">= 3.2", "< 5.3"
26
+ spec.add_dependency "railties", ">= 3.2", "<= 6.1"
27
27
  end
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.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: 2018-05-07 00:00:00.000000000 Z
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
- rubyforge_project:
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.