Sha256: 6fddfe29971ebcf462affa3cf2379828bd072a8d38c029564131d1a6b50b3a9b
Contents?: true
Size: 1.42 KB
Versions: 2
Compression:
Stored size: 1.42 KB
Contents
require "dotenv/parser" require "dotenv/environment" # The top level Dotenv module. The entrypoint for the application logic. module Dotenv class << self attr_accessor :instrumenter end module_function def load(*filenames) with(*filenames) do |f| ignoring_nonexistent_files do env = Environment.new(f) instrument("dotenv.load", :env => env) { env.apply } end end end # same as `load`, but raises Errno::ENOENT if any files don't exist def load!(*filenames) with(*filenames) do |f| env = Environment.new(f) instrument("dotenv.load", :env => env) { env.apply } end end # same as `load`, but will override existing values in `ENV` def overload(*filenames) with(*filenames) do |f| ignoring_nonexistent_files do env = Environment.new(f) instrument("dotenv.overload", :env => env) { env.apply! } end end end # Internal: Helper to expand list of filenames. # # Returns a hash of all the loaded environment variables. def with(*filenames) filenames << ".env" if filenames.empty? filenames.reduce({}) do |hash, filename| hash.merge!(yield(File.expand_path(filename)) || {}) end end def instrument(name, payload = {}, &block) if instrumenter instrumenter.instrument(name, payload, &block) else yield end end def ignoring_nonexistent_files yield rescue Errno::ENOENT end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dotenv-2.1.2 | lib/dotenv.rb |
dotenv-2.1.1 | lib/dotenv.rb |