dotenv 3.1.2 → 3.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93520ca26942608e2d61ddae13f7b6d1cdd16e83e36d6cd9c770282149b2f441
4
- data.tar.gz: bd58a9b3c59d7b6bad8327c1af4a69532ce5a4febb5a408f8a3a3874d3de6925
3
+ metadata.gz: bbefe05cecd5a12cdd9a9dc72b3ff2feee883c10f84c40c9105d3d9c1c5ffc3c
4
+ data.tar.gz: a61066d9119426fa542acf6a17d7134033d17cef8bdf71fe87e964a5d4b5e925
5
5
  SHA512:
6
- metadata.gz: 178f4451234c97f3ad1d1601b62164d9f59fb52a35ad1393d3a924f541c2bc90e8732af795de3ea60acf0ade02ed81472127cebd0eac12d16648315806c58b95
7
- data.tar.gz: 6ac43f44496d94b52ca8f2d852fa4c7bb095996604ead12a81db9118fac756a9fc89a61191f46cafcd846e8617421f7bfac62304c058def1c9d8915b1af47943
6
+ metadata.gz: 9941e0374f811e9048db77c77731106b1b3f75eff0358d6c2a8ef24265857ccfb02d76409f733f1f930815f4b032e5939520ee6c0a48d3eaa00d734be036eb4b
7
+ data.tar.gz: 83b856b11c9817f51151e4249a1fb5fd38b057720a049270ffa7fcf05a20547ce2db29e6690feb8f536478b0995549eaa52a90b5d1a019af5aa73ce6def3e561
data/README.md CHANGED
@@ -180,7 +180,7 @@ end
180
180
  Available options:
181
181
 
182
182
  * `Dotenv::Rails.files` - list of files to be loaded, in order of precedence.
183
- * `Dotenv::Rails.overwrite` - Overwrite exiting `ENV` variables with contents of `.env*` files
183
+ * `Dotenv::Rails.overwrite` - Overwrite existing `ENV` variables with contents of `.env*` files
184
184
  * `Dotenv::Rails.logger` - The logger to use for dotenv's logging. Defaults to `Rails.logger`
185
185
  * `Dotenv::Rails.autorestore` - Enable or disable [autorestore](#autorestore-in-tests)
186
186
 
@@ -276,7 +276,7 @@ You can use the `-t` or `--template` flag on the dotenv cli to create a template
276
276
  ```console
277
277
  $ dotenv -t .env
278
278
  ```
279
- A template will be created in your working directory named `{FINAME}.template`. So in the above example, it would create a `.env.template` file.
279
+ A template will be created in your working directory named `{FILENAME}.template`. So in the above example, it would create a `.env.template` file.
280
280
 
281
281
  The template will contain all the environment variables in your `.env` file but with their values set to the variable names.
282
282
 
data/lib/dotenv/rails.rb CHANGED
@@ -10,14 +10,11 @@ require "dotenv/log_subscriber"
10
10
  Dotenv.instrumenter = ActiveSupport::Notifications
11
11
 
12
12
  # Watch all loaded env files with Spring
13
- begin
14
- require "spring/commands"
15
- ActiveSupport::Notifications.subscribe("load.dotenv") do |*args|
13
+ ActiveSupport::Notifications.subscribe("load.dotenv") do |*args|
14
+ if defined?(Spring) && Spring.respond_to?(:watch)
16
15
  event = ActiveSupport::Notifications::Event.new(*args)
17
16
  Spring.watch event.payload[:env].filename if Rails.application
18
17
  end
19
- rescue LoadError, ArgumentError
20
- # Spring is not available
21
18
  end
22
19
 
23
20
  module Dotenv
@@ -26,7 +23,7 @@ module Dotenv
26
23
  delegate :files, :files=, :overwrite, :overwrite=, :autorestore, :autorestore=, :logger, to: "config.dotenv"
27
24
 
28
25
  def initialize
29
- super()
26
+ super
30
27
  config.dotenv = ActiveSupport::OrderedOptions.new.update(
31
28
  # Rails.logger is not available yet, so we'll save log messages and replay them when it is
32
29
  logger: Dotenv::ReplayLogger.new,
@@ -1,3 +1,3 @@
1
1
  module Dotenv
2
- VERSION = "3.1.2".freeze
2
+ VERSION = "3.1.4".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.2
4
+ version: 3.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Keepers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-06 00:00:00.000000000 Z
11
+ date: 2024-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -83,7 +83,8 @@ files:
83
83
  homepage: https://github.com/bkeepers/dotenv
84
84
  licenses:
85
85
  - MIT
86
- metadata: {}
86
+ metadata:
87
+ changelog_uri: https://github.com/bkeepers/dotenv/releases
87
88
  post_install_message:
88
89
  rdoc_options: []
89
90
  require_paths:
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
100
  - !ruby/object:Gem::Version
100
101
  version: '0'
101
102
  requirements: []
102
- rubygems_version: 3.5.9
103
+ rubygems_version: 3.5.16
103
104
  signing_key:
104
105
  specification_version: 4
105
106
  summary: Loads environment variables from `.env`.