rumination 0.11.2 → 0.11.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rumination/deploy/base.rb +2 -1
- data/lib/rumination/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b47258eac2c585ac6b6ec829aae8f4bc2223fc63
|
4
|
+
data.tar.gz: 5e60d0962beacf1a60f6dad00793581a34094a19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ed968ca4266cc790c8729de1d429c97307b058057efaed9ec0a19a68e2576daf98142c3894628c49cca2db42720cd5928a16519cb735dbfcf7713c288ee08d0
|
7
|
+
data.tar.gz: 11a0bdcf6a4b68cff87863eccfde8c01e9f7f9514d6e571159cf302b14b8816a4af625b97fe9e0c3f63fef6f5cface773d4b09f495ea027e46ffba032fb5b089
|
@@ -1,3 +1,4 @@
|
|
1
|
+
require "fileutils"
|
1
2
|
require "dotenv/parser"
|
2
3
|
require "active_support/core_ext/module/delegation"
|
3
4
|
require "active_support/core_ext/object/blank"
|
@@ -69,7 +70,7 @@ module Rumination
|
|
69
70
|
end
|
70
71
|
|
71
72
|
def rm_env_file
|
72
|
-
|
73
|
+
FileUtils.rm(env_file_path)
|
73
74
|
end
|
74
75
|
|
75
76
|
def persistent_env
|
data/lib/rumination/version.rb
CHANGED