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 CHANGED
@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module DbEntropy
5
- VERSION = '0.2.2'
5
+ VERSION = '0.3.0'
6
6
  end
7
7
 
8
8
  require 'db-entropy/base'
@@ -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 = (['cucumber'] + extra_envs.split(',')).uniq.compact
7
+ @extra_environments = extra_envs.split(',').uniq.compact
8
8
  end
9
9
 
10
10
  def generate_random_name(length=10)
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 2
10
- version: 0.2.2
8
+ - 3
9
+ - 0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jay Zeschin