cre 0.1.2
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +54 -0
- data/Rakefile +27 -0
- data/lib/cre.rb +22 -0
- data/lib/cre/railtie.rb +4 -0
- data/lib/cre/version.rb +3 -0
- data/lib/tasks/cre_tasks.rake +4 -0
- metadata +152 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 409f60f77932359c79301eec91c61cc4b44c1479e301c8f113bf5d02f29a0e69
|
4
|
+
data.tar.gz: 76e672e283e09ec83a8daf952fe5efa695f888dfe749a04c37c610208e6b5723
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 65a12028a82a7133b291e4c1f64a5612cf15cc669af6d3b77635ae2d6901d28241c1a82c1f86b0e5d906a3fdc47919b5a01962ead7276b0f5cb774d1d3aca47d
|
7
|
+
data.tar.gz: 7687aea285b2055e70525160a510cb9ff832477cf79fe30c8c510e1c51ca17c596c9cd10948606fab7717bbc559ad96c6815de5a0a4beb1dec62de54d54b8487
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2018 Khalil Gharbaoui
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
[](https://travis-ci.org/khalilgharbaoui/cre)
|
2
|
+
# Cre
|
3
|
+
This gem basically lets you dig out the rails encrypted credentials by simply doing:
|
4
|
+
|
5
|
+
`Cre.dig(:password)` ✅
|
6
|
+
|
7
|
+
Instead of going the long way:
|
8
|
+
|
9
|
+
`Rails.application.credentials.dig(Rails.env.to_sym, :password)` ❌
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
By default it uses the currently active rails environment.
|
13
|
+
Specify the environment specifically by adding it as the first argument.
|
14
|
+
|
15
|
+
`Cre.dig(:production, :password)`
|
16
|
+
|
17
|
+
⚠️ This assumes your credentials are setup like:
|
18
|
+
```
|
19
|
+
production:
|
20
|
+
aws_key: 'somekeyproduction'
|
21
|
+
password: 'fakepass'
|
22
|
+
development:
|
23
|
+
aws_key: 'somekeydevelopment'
|
24
|
+
password: 'fakepass'
|
25
|
+
test:
|
26
|
+
aws_key: 'somekeytest'
|
27
|
+
password: 'fakepass'
|
28
|
+
```
|
29
|
+
## Installation
|
30
|
+
Add this line to your application's Gemfile:
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
gem 'cre'
|
34
|
+
```
|
35
|
+
|
36
|
+
And then execute:
|
37
|
+
```bash
|
38
|
+
$ bundle
|
39
|
+
```
|
40
|
+
|
41
|
+
Or install it yourself as:
|
42
|
+
```bash
|
43
|
+
$ gem install cre
|
44
|
+
```
|
45
|
+
|
46
|
+
##Todo:
|
47
|
+
- Add support for more and less levels of nesting.
|
48
|
+
- Exeption handeling
|
49
|
+
|
50
|
+
## Contributing
|
51
|
+
Contribution directions go here.
|
52
|
+
|
53
|
+
## License
|
54
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'Cre'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.md')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
require 'bundler/gem_tasks'
|
18
|
+
|
19
|
+
require 'rake/testtask'
|
20
|
+
|
21
|
+
Rake::TestTask.new(:test) do |t|
|
22
|
+
t.libs << 'test'
|
23
|
+
t.pattern = 'test/**/*_test.rb'
|
24
|
+
t.verbose = false
|
25
|
+
end
|
26
|
+
|
27
|
+
task default: :test
|
data/lib/cre.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require "cre/railtie"
|
2
|
+
require "cre/version"
|
3
|
+
|
4
|
+
module Cre
|
5
|
+
# Fetching Rails encrypted credentials with:
|
6
|
+
# `Rails.application.credentials.dig(:environment, :credential)`
|
7
|
+
# Is too long for my taste.
|
8
|
+
# Using Cre.dig is a lot shorter:
|
9
|
+
# `Cre.dig(:environment, :credential)`
|
10
|
+
# By default Rails.env finds the default environment for us when none is
|
11
|
+
# specified and it is called with the credential only:
|
12
|
+
# `Cre.dig(:password)`
|
13
|
+
# The dig method here is just an aesthetic thing to keep us in context.
|
14
|
+
# TODO: Add support for deeply nested credentials.
|
15
|
+
|
16
|
+
def self.dig(env = Rails.env, credential)
|
17
|
+
Rails.application.credentials.dig(
|
18
|
+
env.to_sym,
|
19
|
+
credential.to_sym
|
20
|
+
)
|
21
|
+
end
|
22
|
+
end
|
data/lib/cre/railtie.rb
ADDED
data/lib/cre/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,152 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cre
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Khalil Gharbaoui
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-10-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '5.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '5.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.11'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.11'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: awesome_print
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.8'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.8'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.8'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.8'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.10'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.10'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: sqlite3
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.3'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 1.3.13
|
93
|
+
type: :development
|
94
|
+
prerelease: false
|
95
|
+
version_requirements: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1.3'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 1.3.13
|
103
|
+
description: "Cre reduces the amount of code you have to write when fetching
|
104
|
+
rails credentials. If your encrypted credentials look like
|
105
|
+
this:\n ```\n production:\n password:
|
106
|
+
'foobar'\n development:\n password:
|
107
|
+
'foobar'\n test:\n password: 'foobar'\n
|
108
|
+
\ ```\n Usually you have to get it like
|
109
|
+
this:\n `Rails.application.credentials.dig(Rails.env, :password)`\n
|
110
|
+
\ with Cre you can just do: `Cre.dig(:password)`.\n By
|
111
|
+
default it grabs the current Rails environment.\n To overwrite
|
112
|
+
this behavior add the enviroment as the\n first argument:\n
|
113
|
+
\ `Cre.dig(:production, :password)`\n "
|
114
|
+
email:
|
115
|
+
- khalilgharbaoui@hotmail.com
|
116
|
+
executables: []
|
117
|
+
extensions: []
|
118
|
+
extra_rdoc_files: []
|
119
|
+
files:
|
120
|
+
- MIT-LICENSE
|
121
|
+
- README.md
|
122
|
+
- Rakefile
|
123
|
+
- lib/cre.rb
|
124
|
+
- lib/cre/railtie.rb
|
125
|
+
- lib/cre/version.rb
|
126
|
+
- lib/tasks/cre_tasks.rake
|
127
|
+
homepage: https://github.com/khalilgharbaoui/cre
|
128
|
+
licenses:
|
129
|
+
- MIT
|
130
|
+
metadata:
|
131
|
+
allowed_push_host: https://rubygems.org
|
132
|
+
post_install_message:
|
133
|
+
rdoc_options: []
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
requirements: []
|
147
|
+
rubyforge_project:
|
148
|
+
rubygems_version: 2.7.6
|
149
|
+
signing_key:
|
150
|
+
specification_version: 4
|
151
|
+
summary: Fetch rails credentials the easy way!
|
152
|
+
test_files: []
|