Sha256: 4127cfe27fccba36d1f9e9d3e0872a26ac58151f4a677b1b4770a82a1396d08d

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

require "dotenv"
require "dotenv/version"
require "dotenv/template"
require "optparse"

module Dotenv
  # The command line interface
  class CLI < OptionParser
    attr_reader :argv, :filenames, :overload

    def initialize(argv = [])
      @argv = argv.dup
      @filenames = []
      @overload = false

      super "Usage: dotenv [options]"
      separator ""

      on("-f FILES", Array, "List of env files to parse") do |list|
        @filenames = list
      end

      on("-o", "--overload", "override existing ENV variables") do
        @overload = true
      end

      on("-h", "--help", "Display help") do
        puts self
        exit
      end

      on("-v", "--version", "Show version") do
        puts "dotenv #{Dotenv::VERSION}"
        exit
      end

      on("-t", "--template=FILE", "Create a template env file") do |file|
        template = Dotenv::EnvTemplate.new(file)
        template.create_template
      end

      order!(@argv)
    end

    def run
      if @overload
        Dotenv.overload!(*@filenames)
      else
        Dotenv.load!(*@filenames)
      end
    rescue Errno::ENOENT => e
      abort e.message
    else
      exec(*@argv) unless @argv.empty?
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.6 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.5 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.4 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.3 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.2 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.1 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
study_line-0.2.0 vendor/bundle/ruby/3.2.0/gems/dotenv-2.8.1/lib/dotenv/cli.rb
dotenv-2.8.1 lib/dotenv/cli.rb
dotenv-2.8.0 lib/dotenv/cli.rb