env_inquiry 0.5.0 → 0.5.1
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 +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +6 -0
- data/env_inquiry.gemspec +1 -1
- data/lib/env_inquiry/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac302f6dd04256b5e2237f7124c04ed7a4871774
|
|
4
|
+
data.tar.gz: f9bf7b32c3fdea9505f10932bc25468bbb844e13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3035f82b603a336cb9d00bd8ab19940d86e0d5f5f66e6dfdc48c31aa126bff907e6341255fcf573b1a28b3b6ca190bb4f1f2a6b309aeba77be828e0a624c1e93
|
|
7
|
+
data.tar.gz: 116bf6ad248f0d8b3b09b57be8ec98c919abf714eb4e0b1cbbd4513dd23440fab0385341779f917e7e7a77f969279085e200ac28d382e673a193ca665892b53d
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -23,12 +23,18 @@ In Rails (optional)
|
|
|
23
23
|
```
|
|
24
24
|
# auto-load in config/initializers/whatever.rb
|
|
25
25
|
require 'env_inquiry'
|
|
26
|
+
EnvInquiry::Env.inquire
|
|
26
27
|
```
|
|
27
28
|
|
|
28
29
|
## Usage
|
|
29
30
|
|
|
30
31
|
```
|
|
32
|
+
require 'env_inquiry'
|
|
33
|
+
|
|
34
|
+
EnvInquiry::Env.inquire
|
|
35
|
+
|
|
31
36
|
EnvInquiry::Env.https_enabled?
|
|
37
|
+
|
|
32
38
|
# feel free to shorten in your app with something like:
|
|
33
39
|
Env = EnvInquiry::Env
|
|
34
40
|
Env.https_enabled?
|
data/env_inquiry.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ require 'env_inquiry/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "env_inquiry"
|
|
8
8
|
spec.version = EnvInquiry::VERSION
|
|
9
|
-
spec.authors = ["
|
|
9
|
+
spec.authors = ["servicient", "lukewendling"]
|
|
10
10
|
spec.email = ["dev@mytennislessons.com"]
|
|
11
11
|
spec.summary = %q{Use dot notation to access ENV vars}
|
|
12
12
|
spec.description = %q{Use dot notation to access ENV vars. A handy companion to dotenv-* gems}
|
data/lib/env_inquiry/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: env_inquiry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
-
|
|
7
|
+
- servicient
|
|
8
|
+
- lukewendling
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-06-
|
|
12
|
+
date: 2014-06-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|