winton-active_wrapper 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{active_wrapper}
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Winton Welsh"]
data/gemspec.rb CHANGED
@@ -15,5 +15,5 @@ GEM_SPEC = Gem::Specification.new do |s|
15
15
  s.name = GEM_NAME
16
16
  s.platform = Gem::Platform::RUBY
17
17
  s.require_path = "lib"
18
- s.version = "0.1.4"
18
+ s.version = "0.1.5"
19
19
  end
@@ -21,13 +21,13 @@ module ActiveWrapper
21
21
  end
22
22
 
23
23
  def migrate_reset
24
- if @@env == 'test'
24
+ if @env == 'test'
25
25
  stdout = $stdout
26
26
  $stdout = File.new('/dev/null', 'w')
27
27
  end
28
28
  migrate(0)
29
29
  migrate
30
- if @@env == 'test'
30
+ if @env == 'test'
31
31
  $stdout = stdout
32
32
  end
33
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: winton-active_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Winton Welsh