dotenv 0.9.0 → 2.7.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +0,0 @@
1
- export OPTION_A=2
2
- export OPTION_B='\n'
@@ -1,5 +0,0 @@
1
- OPTION_A=1
2
- OPTION_B=2
3
- OPTION_C= 3
4
- OPTION_D =4
5
- OPTION_E = 5
@@ -1,8 +0,0 @@
1
- OPTION_A='1'
2
- OPTION_B='2'
3
- OPTION_C=''
4
- OPTION_D='\n'
5
- OPTION_E="1"
6
- OPTION_F="2"
7
- OPTION_G=""
8
- OPTION_H="\n"
@@ -1,4 +0,0 @@
1
- OPTION_A: 1
2
- OPTION_B: '2'
3
- OPTION_C: ''
4
- OPTION_D: '\n'
data/spec/spec_helper.rb DELETED
@@ -1,7 +0,0 @@
1
- require 'dotenv'
2
-
3
- RSpec.configure do |config|
4
- # Restore the state of ENV after each spec
5
- config.before { @env_keys = ENV.keys }
6
- config.after { ENV.delete_if { |k,v| !@env_keys.include?(k) } }
7
- end