ejson-rails 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/ci.yml +39 -0
- data/.github/workflows/cla.yml +22 -0
- data/.gitignore +0 -3
- data/.rubocop.yml +7 -3
- data/.ruby-version +1 -1
- data/Gemfile +3 -0
- data/Gemfile.lock +86 -72
- data/LICENSE.txt +1 -1
- data/README.md +91 -2
- data/ejson-rails.gemspec +9 -7
- data/gemfiles/Gemfile.rails-edge +5 -0
- data/gemfiles/Gemfile.rails-latest +5 -0
- data/gemfiles/Gemfile.rails-min +5 -0
- data/lib/ejson/rails/railtie.rb +12 -4
- data/lib/ejson/rails/skip_secrets.rb +5 -0
- data/lib/ejson/rails/version.rb +1 -1
- data/lib/ejson/rails.rb +2 -2
- metadata +16 -42
- data/.travis.yml +0 -57
- data/gemfiles/Gemfile.rails-5-0-stable +0 -10
- data/gemfiles/Gemfile.rails-5-1-stable +0 -10
- data/gemfiles/Gemfile.rails-5-2-stable +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 31b8ead062c2323086dbdaa211878c04ce3cb3ee3203882ca13efa9b6ba8f3a3
|
4
|
+
data.tar.gz: 3bc548e0db8eac2a33ccdf849e0fb2dbcddd7fe7ea0a537cab1e6e153fccb01e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03b463b72d2a9efdf4e8e9f461a4146e60c52ba53a4d0c17554b4ff1582aa34d332310c70f5f73061279486963f199900002d29b23356fc84411b2e230913a58
|
7
|
+
data.tar.gz: 42f3dc896ce52a593c67e65fe7c72dd5b6ec4d3cc22690350cd9a964ee06c6799cc362390e938f8e1dbcee01259c48195aed2632f84342460ab089c9476ef018
|
@@ -0,0 +1,39 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on: push
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
ruby-tests:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
|
9
|
+
strategy:
|
10
|
+
matrix:
|
11
|
+
entry:
|
12
|
+
- name: Minimum Rails
|
13
|
+
ruby: '2.7'
|
14
|
+
gemfile: Gemfile.rails-min
|
15
|
+
- name: Latest Rails
|
16
|
+
ruby: '3.2'
|
17
|
+
gemfile: Gemfile.rails-latest
|
18
|
+
- name: Edge Rails
|
19
|
+
ruby: '3.2'
|
20
|
+
gemfile: "Gemfile.rails-edge"
|
21
|
+
|
22
|
+
name: ${{ matrix.entry.name }}
|
23
|
+
env:
|
24
|
+
BUNDLE_GEMFILE: gemfiles/${{ matrix.entry.gemfile }}
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v3
|
27
|
+
name: Checkout
|
28
|
+
|
29
|
+
- uses: ruby/setup-ruby@v1
|
30
|
+
name: Use Ruby ${{ matrix.entry.ruby }}
|
31
|
+
with:
|
32
|
+
ruby-version: ${{ matrix.entry.ruby }}
|
33
|
+
bundler-cache: true
|
34
|
+
|
35
|
+
- name: 💅🏼 Lint
|
36
|
+
run: bundle exec rubocop --fail-fast
|
37
|
+
|
38
|
+
- name: Test
|
39
|
+
run: bundle exec rake spec
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: Contributor License Agreement (CLA)
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request_target:
|
5
|
+
types: [opened, synchronize]
|
6
|
+
issue_comment:
|
7
|
+
types: [created]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
cla:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
if: |
|
13
|
+
(github.event.issue.pull_request
|
14
|
+
&& !github.event.issue.pull_request.merged_at
|
15
|
+
&& contains(github.event.comment.body, 'signed')
|
16
|
+
)
|
17
|
+
|| (github.event.pull_request && !github.event.pull_request.merged)
|
18
|
+
steps:
|
19
|
+
- uses: Shopify/shopify-cla-action@v1
|
20
|
+
with:
|
21
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
22
|
+
cla-token: ${{ secrets.CLA_TOKEN }}
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
-
|
2
|
-
-
|
1
|
+
inherit_gem:
|
2
|
+
rubocop-shopify: rubocop.yml
|
3
3
|
|
4
4
|
AllCops:
|
5
|
-
|
5
|
+
NewCops: disable
|
6
|
+
SuggestExtensions: false
|
7
|
+
TargetRubyVersion: 3.2
|
8
|
+
Exclude:
|
9
|
+
- vendor/bundle/**/*
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
3.2.0
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,104 +1,118 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ejson-rails (0.
|
4
|
+
ejson-rails (0.2.0)
|
5
5
|
ejson
|
6
|
-
railties (>=
|
6
|
+
railties (>= 5.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionpack (
|
12
|
-
actionview (=
|
13
|
-
activesupport (=
|
14
|
-
rack (~> 2.0)
|
11
|
+
actionpack (7.0.6)
|
12
|
+
actionview (= 7.0.6)
|
13
|
+
activesupport (= 7.0.6)
|
14
|
+
rack (~> 2.0, >= 2.2.4)
|
15
15
|
rack-test (>= 0.6.3)
|
16
16
|
rails-dom-testing (~> 2.0)
|
17
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
18
|
-
actionview (
|
19
|
-
activesupport (=
|
17
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
18
|
+
actionview (7.0.6)
|
19
|
+
activesupport (= 7.0.6)
|
20
20
|
builder (~> 3.1)
|
21
21
|
erubi (~> 1.4)
|
22
22
|
rails-dom-testing (~> 2.0)
|
23
|
-
rails-html-sanitizer (~> 1.
|
24
|
-
activesupport (
|
23
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
+
activesupport (7.0.6)
|
25
25
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
26
|
-
i18n (>=
|
27
|
-
minitest (
|
28
|
-
tzinfo (~>
|
29
|
-
ast (2.4.
|
30
|
-
builder (3.2.
|
31
|
-
concurrent-ruby (1.
|
32
|
-
crass (1.0.
|
33
|
-
diff-lcs (1.
|
34
|
-
ejson (1.1
|
35
|
-
erubi (1.
|
36
|
-
i18n (1.
|
26
|
+
i18n (>= 1.6, < 2)
|
27
|
+
minitest (>= 5.1)
|
28
|
+
tzinfo (~> 2.0)
|
29
|
+
ast (2.4.2)
|
30
|
+
builder (3.2.4)
|
31
|
+
concurrent-ruby (1.2.2)
|
32
|
+
crass (1.0.6)
|
33
|
+
diff-lcs (1.4.4)
|
34
|
+
ejson (1.3.1)
|
35
|
+
erubi (1.12.0)
|
36
|
+
i18n (1.14.1)
|
37
37
|
concurrent-ruby (~> 1.0)
|
38
|
-
|
38
|
+
json (2.6.3)
|
39
|
+
loofah (2.21.3)
|
39
40
|
crass (~> 1.0.2)
|
40
|
-
nokogiri (>= 1.
|
41
|
-
method_source (0.
|
42
|
-
mini_portile2 (2.
|
43
|
-
minitest (5.
|
44
|
-
nokogiri (1.
|
45
|
-
mini_portile2 (~> 2.
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
rack
|
52
|
-
|
53
|
-
|
54
|
-
|
41
|
+
nokogiri (>= 1.12.0)
|
42
|
+
method_source (1.0.0)
|
43
|
+
mini_portile2 (2.8.4)
|
44
|
+
minitest (5.18.1)
|
45
|
+
nokogiri (1.15.3)
|
46
|
+
mini_portile2 (~> 2.8.2)
|
47
|
+
racc (~> 1.4)
|
48
|
+
parallel (1.22.1)
|
49
|
+
parser (3.2.0.0)
|
50
|
+
ast (~> 2.4.1)
|
51
|
+
racc (1.7.1)
|
52
|
+
rack (2.2.7)
|
53
|
+
rack-test (2.1.0)
|
54
|
+
rack (>= 1.3)
|
55
|
+
rails-dom-testing (2.1.1)
|
56
|
+
activesupport (>= 5.0.0)
|
57
|
+
minitest
|
55
58
|
nokogiri (>= 1.6)
|
56
|
-
rails-html-sanitizer (1.0
|
57
|
-
loofah (~> 2.
|
58
|
-
|
59
|
-
|
60
|
-
|
59
|
+
rails-html-sanitizer (1.6.0)
|
60
|
+
loofah (~> 2.21)
|
61
|
+
nokogiri (~> 1.14)
|
62
|
+
railties (7.0.6)
|
63
|
+
actionpack (= 7.0.6)
|
64
|
+
activesupport (= 7.0.6)
|
61
65
|
method_source
|
62
|
-
rake (>=
|
63
|
-
thor (
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
rspec-
|
72
|
-
|
66
|
+
rake (>= 12.2)
|
67
|
+
thor (~> 1.0)
|
68
|
+
zeitwerk (~> 2.5)
|
69
|
+
rainbow (3.1.1)
|
70
|
+
rake (13.0.6)
|
71
|
+
regexp_parser (2.6.1)
|
72
|
+
rexml (3.2.5)
|
73
|
+
rspec (3.10.0)
|
74
|
+
rspec-core (~> 3.10.0)
|
75
|
+
rspec-expectations (~> 3.10.0)
|
76
|
+
rspec-mocks (~> 3.10.0)
|
77
|
+
rspec-core (3.10.1)
|
78
|
+
rspec-support (~> 3.10.0)
|
79
|
+
rspec-expectations (3.10.1)
|
73
80
|
diff-lcs (>= 1.2.0, < 2.0)
|
74
|
-
rspec-support (~> 3.
|
75
|
-
rspec-mocks (3.
|
81
|
+
rspec-support (~> 3.10.0)
|
82
|
+
rspec-mocks (3.10.2)
|
76
83
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.
|
78
|
-
rspec-support (3.
|
79
|
-
rubocop (
|
84
|
+
rspec-support (~> 3.10.0)
|
85
|
+
rspec-support (3.10.2)
|
86
|
+
rubocop (1.43.0)
|
87
|
+
json (~> 2.3)
|
80
88
|
parallel (~> 1.10)
|
81
|
-
parser (>= 2.
|
82
|
-
powerpack (~> 0.1)
|
89
|
+
parser (>= 3.2.0.0)
|
83
90
|
rainbow (>= 2.2.2, < 4.0)
|
91
|
+
regexp_parser (>= 1.8, < 3.0)
|
92
|
+
rexml (>= 3.2.5, < 4.0)
|
93
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
84
94
|
ruby-progressbar (~> 1.7)
|
85
|
-
unicode-display_width (
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
95
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
96
|
+
rubocop-ast (1.24.1)
|
97
|
+
parser (>= 3.1.1.0)
|
98
|
+
rubocop-shopify (2.11.1)
|
99
|
+
rubocop (~> 1.42)
|
100
|
+
ruby-progressbar (1.11.0)
|
101
|
+
thor (1.2.2)
|
102
|
+
tzinfo (2.0.6)
|
103
|
+
concurrent-ruby (~> 1.0)
|
104
|
+
unicode-display_width (2.4.2)
|
105
|
+
zeitwerk (2.6.8)
|
92
106
|
|
93
107
|
PLATFORMS
|
94
108
|
ruby
|
95
109
|
|
96
110
|
DEPENDENCIES
|
97
|
-
bundler (~> 1.16)
|
98
111
|
ejson-rails!
|
99
|
-
rake (~>
|
112
|
+
rake (~> 13.0)
|
100
113
|
rspec (~> 3.0)
|
101
|
-
rubocop
|
114
|
+
rubocop
|
115
|
+
rubocop-shopify
|
102
116
|
|
103
117
|
BUNDLED WITH
|
104
|
-
|
118
|
+
2.3.17
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# EJSON::Rails
|
2
2
|
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://github.com/Shopify/ejson-rails/workflows/CI/badge.svg?branch=main)](https://github.com/Shopify/ejson-rails/actions?query=branch%3Amain)
|
4
4
|
|
5
|
-
Automatically injects `ejson` decrypted secrets into your `Rails.application.secrets`.
|
5
|
+
Automatically injects [`ejson`](https://github.com/Shopify/ejson) decrypted secrets into your `Rails.application.secrets`.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -31,6 +31,95 @@ Decrypted secrets from `project/config/secrets.json` (or `project/config/secrets
|
|
31
31
|
|
32
32
|
will be accessible via `Rails.application.secrets.some_secret` or `Rails.application.secrets[:some_secret]` on boot. JSON files are loaded once and contents are `deep_merge`'d into your app's existing rails secrets.
|
33
33
|
|
34
|
+
Secrets will also be accessible via `Rails.application.credentials`, e.g. `Rails.application.credentials.some_secret` or `Rails.application.credentials[:some_secret]`. To avoid subtle compatibility issues, if a credential already exists, an error will occur.
|
35
|
+
|
36
|
+
NOTE: This gem does not decrypt ejson for you. You will need to configure this as part of your deployment pipeline.
|
37
|
+
|
38
|
+
## Migrating to credentials
|
39
|
+
|
40
|
+
Rails 7.1 has deprecated application secrets in favor of credentials. ejson-rails can migrate secrets to application credentials.
|
41
|
+
|
42
|
+
Even before running Rails 7.1, you can migrate your secrets in a few steps.
|
43
|
+
|
44
|
+
First, move the development and test secrets to JSON secrets:
|
45
|
+
|
46
|
+
```sh-session
|
47
|
+
bin/rails runner 'Rails.root.join("config/secrets.#{Rails.env}.json").write(JSON.pretty_generate(Rails.application.secrets.to_h.without(:secret_key_base)))'
|
48
|
+
bin/rails runner -e test 'Rails.root.join("config/secrets.#{Rails.env}.json").write(JSON.pretty_generate(Rails.application.secrets.to_h.without(:secret_key_base)))'
|
49
|
+
```
|
50
|
+
|
51
|
+
Secrets support ERB while EJSON secrets don't, so if your secrets contain ERB, you will need to move that logic to the environment configurations:
|
52
|
+
|
53
|
+
**Before**:
|
54
|
+
|
55
|
+
`config/secrets.yml`
|
56
|
+
```yaml
|
57
|
+
development:
|
58
|
+
some_external_service:
|
59
|
+
api_token: <%= ENV.fetch(SOME_EXTERNAL_SERVICE_API_TOKEN, "12345") %>
|
60
|
+
```
|
61
|
+
|
62
|
+
**After**:
|
63
|
+
|
64
|
+
`config/secrets.development.json` as generated by the command above.
|
65
|
+
```json
|
66
|
+
{
|
67
|
+
"some_external_service": {
|
68
|
+
"api_token": "12345"
|
69
|
+
},
|
70
|
+
"something_else_entirely": "abc"
|
71
|
+
}
|
72
|
+
```
|
73
|
+
|
74
|
+
`config/environments/development.rb`
|
75
|
+
```ruby
|
76
|
+
Rails.application.configure do
|
77
|
+
# elided
|
78
|
+
|
79
|
+
# credential should be set using []=, not the dynamic accessors
|
80
|
+
credentials[:some_external_service][:api_token] = ENV.fetch("SOME_EXTERNAL_SERVICE_API_TOKEN", "12345")
|
81
|
+
|
82
|
+
# top-level values must be set through `credentials.config`
|
83
|
+
credentials.config[:something_else_entirely] = ENV.fetch("SOMETHING_ELSE_ENTIRELY", "abc")
|
84
|
+
end
|
85
|
+
```
|
86
|
+
|
87
|
+
Note that the code accesses the credentials as a Hash with `[]` and `[]=`. This is important because the dynamic accessor methods will set values in a different object, and credentials will behave inconsistently after that:
|
88
|
+
|
89
|
+
```ruby
|
90
|
+
Rails.application.credentials.some_external_service.api_token = "foo"
|
91
|
+
Rails.application.credentials[:some_external_service][:api_token] # => "12345"
|
92
|
+
```
|
93
|
+
|
94
|
+
Also note the code sets top-level values through `credentials.config`, because `credentials#[]=(key, value)` sets values in a different object.
|
95
|
+
|
96
|
+
```ruby
|
97
|
+
Rails.application.credentials[:something_else_entirely] = "foo"
|
98
|
+
Rails.application.credentials[:something_else_entirely] # => "abc"
|
99
|
+
```
|
100
|
+
|
101
|
+
Make sure there's no code using the dynamic accessors before setting the configuration in the Hash, or the values won't be accessible from the dynamic accessor:
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
Rails.application.credentials.something_else_entirely # just accessing is enough to cause the issue
|
105
|
+
Rails.application.credentials[:some_external_service][:api_token] = "foo"
|
106
|
+
Rails.application.credentials.some_external_service.api_token # => "12345"
|
107
|
+
```
|
108
|
+
|
109
|
+
You're now ready to use credentials instead of secrets:
|
110
|
+
|
111
|
+
```sh-session
|
112
|
+
git ls-files | xargs ruby -pi -e 'gsub("Rails.application.secrets", "Rails.application.credentials")' --
|
113
|
+
```
|
114
|
+
|
115
|
+
To avoid the deprecation warning from the use of secrets in `ejson-rails` once you're running Rails 7.1, require another file from your Gemfile:
|
116
|
+
|
117
|
+
```ruby
|
118
|
+
gem 'ejson-rails', require: 'ejson/rails/skip_secrets'
|
119
|
+
```
|
120
|
+
|
121
|
+
This will no longer merge secrets from JSON in `Rails.application.secrets`. This will be the default in the next major version.
|
122
|
+
|
34
123
|
## Development
|
35
124
|
|
36
125
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/ejson-rails.gemspec
CHANGED
@@ -14,18 +14,20 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.description = "Rails secret management by encrypting values in a JSON hash with a public/private keypair"
|
15
15
|
spec.homepage = "https://github.com/Shopify/ejson-rails"
|
16
16
|
spec.license = "MIT"
|
17
|
-
spec.files =
|
17
|
+
spec.files = %x(git ls-files -z).split("\x0").reject do |f|
|
18
18
|
f.match(%r{^(test|spec|features)/})
|
19
19
|
end
|
20
20
|
spec.bindir = "exe"
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
22
|
spec.require_paths = ["lib"]
|
23
23
|
|
24
|
-
spec.
|
25
|
-
spec.add_dependency "railties", ">= 4.1"
|
24
|
+
spec.metadata = { "allowed_push_host" => "https://rubygems.org" }
|
26
25
|
|
27
|
-
spec.
|
28
|
-
|
29
|
-
spec.
|
30
|
-
spec.
|
26
|
+
spec.required_ruby_version = ">= 2.7.0"
|
27
|
+
|
28
|
+
spec.add_dependency("ejson")
|
29
|
+
spec.add_dependency("railties", ">= 5.2")
|
30
|
+
|
31
|
+
spec.add_development_dependency("rake", "~> 13.0")
|
32
|
+
spec.add_development_dependency("rspec", "~> 3.0")
|
31
33
|
end
|
data/lib/ejson/rails/railtie.rb
CHANGED
@@ -6,11 +6,19 @@ module EJSON
|
|
6
6
|
private_constant :Rails
|
7
7
|
|
8
8
|
class Railtie < Rails::Railtie
|
9
|
+
singleton_class.attr_accessor(:set_secrets)
|
10
|
+
@set_secrets = true
|
11
|
+
|
9
12
|
config.before_configuration do
|
10
|
-
json_files.
|
11
|
-
|
12
|
-
|
13
|
-
|
13
|
+
json_file = json_files.detect { |file| valid?(file) }
|
14
|
+
next unless json_file
|
15
|
+
|
16
|
+
secrets = JSON.parse(json_file.read, symbolize_names: true)
|
17
|
+
Rails.application.secrets.deep_merge!(secrets) if set_secrets
|
18
|
+
# Merging into `credentials.config` because in Rails 7.0, reading a credential with
|
19
|
+
# Rails.application.credentials[:some_credential] won't work otherwise.
|
20
|
+
Rails.application.credentials.config.deep_merge!(secrets) do |key|
|
21
|
+
raise "A credential already exists with the same name: #{key}"
|
14
22
|
end
|
15
23
|
end
|
16
24
|
|
data/lib/ejson/rails/version.rb
CHANGED
data/lib/ejson/rails.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ejson-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gannon McGibbon
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ejson
|
@@ -30,42 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '5.2'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: bundler
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.16'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.16'
|
40
|
+
version: '5.2'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: rake
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
45
|
- - "~>"
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
47
|
+
version: '13.0'
|
62
48
|
type: :development
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
54
|
+
version: '13.0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: rspec
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,20 +66,6 @@ dependencies:
|
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
68
|
version: '3.0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rubocop
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0.56'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0.56'
|
97
69
|
description: Rails secret management by encrypting values in a JSON hash with a public/private
|
98
70
|
keypair
|
99
71
|
email:
|
@@ -102,11 +74,12 @@ executables: []
|
|
102
74
|
extensions: []
|
103
75
|
extra_rdoc_files: []
|
104
76
|
files:
|
77
|
+
- ".github/workflows/ci.yml"
|
78
|
+
- ".github/workflows/cla.yml"
|
105
79
|
- ".gitignore"
|
106
80
|
- ".rspec"
|
107
81
|
- ".rubocop.yml"
|
108
82
|
- ".ruby-version"
|
109
|
-
- ".travis.yml"
|
110
83
|
- Gemfile
|
111
84
|
- Gemfile.lock
|
112
85
|
- LICENSE.txt
|
@@ -115,17 +88,19 @@ files:
|
|
115
88
|
- bin/console
|
116
89
|
- bin/setup
|
117
90
|
- ejson-rails.gemspec
|
118
|
-
- gemfiles/Gemfile.rails-
|
119
|
-
- gemfiles/Gemfile.rails-
|
120
|
-
- gemfiles/Gemfile.rails-
|
91
|
+
- gemfiles/Gemfile.rails-edge
|
92
|
+
- gemfiles/Gemfile.rails-latest
|
93
|
+
- gemfiles/Gemfile.rails-min
|
121
94
|
- lib/ejson/rails.rb
|
122
95
|
- lib/ejson/rails/railtie.rb
|
96
|
+
- lib/ejson/rails/skip_secrets.rb
|
123
97
|
- lib/ejson/rails/version.rb
|
124
98
|
- shipit.rubygems.yml
|
125
99
|
homepage: https://github.com/Shopify/ejson-rails
|
126
100
|
licenses:
|
127
101
|
- MIT
|
128
|
-
metadata:
|
102
|
+
metadata:
|
103
|
+
allowed_push_host: https://rubygems.org
|
129
104
|
post_install_message:
|
130
105
|
rdoc_options: []
|
131
106
|
require_paths:
|
@@ -134,15 +109,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
134
109
|
requirements:
|
135
110
|
- - ">="
|
136
111
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
112
|
+
version: 2.7.0
|
138
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
114
|
requirements:
|
140
115
|
- - ">="
|
141
116
|
- !ruby/object:Gem::Version
|
142
117
|
version: '0'
|
143
118
|
requirements: []
|
144
|
-
|
145
|
-
rubygems_version: 2.6.14
|
119
|
+
rubygems_version: 3.4.16
|
146
120
|
signing_key:
|
147
121
|
specification_version: 4
|
148
122
|
summary: Asymmetric keywise encryption for JSON on Rails
|
data/.travis.yml
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
cache: bundler
|
3
|
-
language: ruby
|
4
|
-
rvm:
|
5
|
-
- 2.0.0
|
6
|
-
- 2.1.10
|
7
|
-
- 2.2.7
|
8
|
-
- 2.3.4
|
9
|
-
- 2.4.1
|
10
|
-
- 2.5.0
|
11
|
-
- ruby-head
|
12
|
-
- jruby-9.1.14.0
|
13
|
-
gemfile:
|
14
|
-
- gemfiles/Gemfile.rails-5-0-stable
|
15
|
-
- gemfiles/Gemfile.rails-5-1-stable
|
16
|
-
- gemfiles/Gemfile.rails-5-2-stable
|
17
|
-
- Gemfile
|
18
|
-
matrix:
|
19
|
-
allow_failures:
|
20
|
-
- rvm: ruby-head
|
21
|
-
exclude:
|
22
|
-
- rvm: 2.0.0
|
23
|
-
gemfile: Gemfile
|
24
|
-
- rvm: 2.1.10
|
25
|
-
gemfile: Gemfile
|
26
|
-
- rvm: jruby-9.1.14.0
|
27
|
-
gemfile: Gemfile
|
28
|
-
- rvm: 1.9.3
|
29
|
-
gemfile: gemfiles/Gemfile.rails-5-0-stable
|
30
|
-
- rvm: 2.0.0
|
31
|
-
gemfile: gemfiles/Gemfile.rails-5-0-stable
|
32
|
-
- rvm: 2.1.10
|
33
|
-
gemfile: gemfiles/Gemfile.rails-5-0-stable
|
34
|
-
- rvm: jruby-9.1.14.0
|
35
|
-
gemfile: gemfiles/Gemfile.rails-5-0-stable
|
36
|
-
- rvm: jruby-9.1.14.0
|
37
|
-
gemfile: gemfiles/Gemfile.rails-5-1-stable
|
38
|
-
- rvm: 1.9.3
|
39
|
-
gemfile: gemfiles/Gemfile.rails-5-1-stable
|
40
|
-
- rvm: 2.0.0
|
41
|
-
gemfile: gemfiles/Gemfile.rails-5-1-stable
|
42
|
-
- rvm: 2.1.10
|
43
|
-
gemfile: gemfiles/Gemfile.rails-5-1-stable
|
44
|
-
- rvm: jruby-9.1.14.0
|
45
|
-
gemfile: gemfiles/Gemfile.rails-5-2-stable
|
46
|
-
- rvm: 1.9.3
|
47
|
-
gemfile: gemfiles/Gemfile.rails-5-2-stable
|
48
|
-
- rvm: 2.0.0
|
49
|
-
gemfile: gemfiles/Gemfile.rails-5-2-stable
|
50
|
-
- rvm: 2.1.10
|
51
|
-
gemfile: gemfiles/Gemfile.rails-5-2-stable
|
52
|
-
|
53
|
-
before_install:
|
54
|
-
- gem update --system
|
55
|
-
|
56
|
-
notifications:
|
57
|
-
email: false
|