dotenv-rails 2.7.6 → 2.8.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -4
  3. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63a5d656ee0a5beec3233432fe5132ddcaae19276ddb1bf57eeb0303e7533dd0
4
- data.tar.gz: 42d7b7894c089250b36e14263c175c6ed0dd3952076bc2008a9b2312ba4f36c1
3
+ metadata.gz: 5a8ba4039c1bdd46569ac907b8fb2f3a76b1c6d00a451a55aadf931c15f69d90
4
+ data.tar.gz: 619354ce54dfb1689c7ccae402cfb3230df4fd0284783859906fae4c994488c8
5
5
  SHA512:
6
- metadata.gz: a469e40e9eb8a977108a5c00ab6b6d3178892a4b06eb2c9e5157a04bb5219d05df934d51d6b09ffaeedacacbfe9e05441a890311895b24d6bf687c671e55bac9
7
- data.tar.gz: 01fdb41bcd5eeaaa41fdfe14df7fec1e1632aaac050e00f46089635d28aad1598b28b44fa30b737bc09821d6fcacceef913e3298f5f4ba238a19445c9a0a9c27
6
+ metadata.gz: 4084c7af6d0e380f3209b302d9d116acb2f7eda31879c1d5c34b9705e7667239993fab2b5d69286a7bd268813c8f0d394cfd2fca92837b4fe38f5a2adbf59535
7
+ data.tar.gz: 7cb29fd7b1572845347b8d26dd4b45141595c404d5b9b019228a712c6fd640e34b62a9fe49d664b9381ee34339d8c2ab1bbc7d6da989a7b4f526e9cc1fcad3d3
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # dotenv [![Build Status](https://secure.travis-ci.org/bkeepers/dotenv.svg?branch=master)](https://travis-ci.org/bkeepers/dotenv) [![Gem Version](https://badge.fury.io/rb/dotenv.svg)](https://badge.fury.io/rb/dotenv) [![Join the chat at https://gitter.im/bkeepers/dotenv](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bkeepers/dotenv?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1
+ # dotenv [![Gem Version](https://badge.fury.io/rb/dotenv.svg)](https://badge.fury.io/rb/dotenv) [![Join the chat at https://gitter.im/bkeepers/dotenv](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bkeepers/dotenv?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2
2
 
3
3
  Shim to load environment variables from `.env` into `ENV` in *development*.
4
4
 
@@ -30,7 +30,10 @@ dotenv is initialized in your Rails app during the `before_configuration` callba
30
30
  # config/application.rb
31
31
  Bundler.require(*Rails.groups)
32
32
 
33
- Dotenv::Railtie.load
33
+ # Load dotenv only in development or test environment
34
+ if ['development', 'test'].include? ENV['RAILS_ENV']
35
+ Dotenv::Railtie.load
36
+ end
34
37
 
35
38
  HOSTNAME = ENV['HOSTNAME']
36
39
  ```
@@ -223,7 +226,7 @@ You can use the `-t` or `--template` flag on the dotenv cli to create a template
223
226
  ```shell
224
227
  $ dotenv -t .env
225
228
  ```
226
- A template will be created in your working directory named `{FINAME}.template`. So in the above example, it would create a `.env.template` file.
229
+ A template will be created in your working directory named `{FINAME}.template`. So in the above example, it would create a `.env.template` file.
227
230
 
228
231
  The template will contain all the environment variables in your `.env` file but with their values set to the variable names.
229
232
 
@@ -233,7 +236,7 @@ S3_BUCKET=YOURS3BUCKET
233
236
  SECRET_KEY=YOURSECRETKEYGOESHERE
234
237
  ```
235
238
 
236
- Would become
239
+ Would become
237
240
 
238
241
  ```shell
239
242
  # .env.template
@@ -247,6 +250,11 @@ Personally, I prefer to commit the `.env` file with development-only settings. T
247
250
 
248
251
  By default, it **won't** overwrite existing environment variables as dotenv assumes the deployment environment has more knowledge about configuration than the application does. To overwrite existing environment variables you can use `Dotenv.overload`.
249
252
 
253
+ You can also use the `-o` or `--overload` flag on the dotenv cli to override existing `ENV` variables.
254
+ ```shell
255
+ $ dotenv -o -f ".env.local,.env"
256
+ ```
257
+
250
258
  ## Contributing
251
259
 
252
260
  If you want a better idea of how dotenv works, check out the [Ruby Rogues Code Reading of dotenv](https://www.youtube.com/watch?v=lKmY_0uY86s).
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotenv-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.6
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Keepers
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-11 00:00:00.000000000 Z
11
+ date: 2022-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.7.6
19
+ version: 2.8.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.7.6
26
+ version: 2.8.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: railties
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -68,7 +68,7 @@ homepage: https://github.com/bkeepers/dotenv
68
68
  licenses:
69
69
  - MIT
70
70
  metadata: {}
71
- post_install_message:
71
+ post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
74
74
  - lib
@@ -83,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubygems_version: 3.0.3
87
- signing_key:
86
+ rubygems_version: 3.2.32
87
+ signing_key:
88
88
  specification_version: 4
89
89
  summary: Autoload dotenv in Rails.
90
90
  test_files: []