db-entropy 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/db-entropy.rb +1 -1
- data/lib/db-entropy/base.rb +1 -1
- metadata +3 -3
data/lib/db-entropy.rb
CHANGED
data/lib/db-entropy/base.rb
CHANGED
@@ -4,7 +4,7 @@ class DbEntropy::Base
|
|
4
4
|
|
5
5
|
def initialize(extra_envs=ENV['EXTRA_ENVS'])
|
6
6
|
extra_envs ||= ''
|
7
|
-
@extra_environments =
|
7
|
+
@extra_environments = extra_envs.split(',').uniq.compact
|
8
8
|
end
|
9
9
|
|
10
10
|
def generate_random_name(length=10)
|