Class Dotenv::Parser
In: lib/dotenv/parser.rb
Parent: Object

Methods

call   call   new  

Constants

LINE = / \A (?:export\s+)? # optional export ([\w\.]+) # key (?:\s*=\s*|:\s+?) # separator ( # optional value begin '(?:\'|[^'])*' # single quoted value | # or "(?:\"|[^"])*" # double quoted value | # or [^#\n]+ # unquoted value )? # value end (?:\s*\#.*)? # optional comment \z /x

Public Class methods

Public Instance methods

[Validate]