database_exporter 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@ require 'bundler'
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "database_exporter"
8
- s.version = '0.0.2'
8
+ s.version = '0.0.3'
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.authors = ["Mike Pack"]
11
11
  s.email = ["mikepackdev@gmail.com"]
@@ -10,5 +10,5 @@ class DatabaseExporter
10
10
  end
11
11
  end
12
12
 
13
- def_delegators :@database, :export, :import, :copy
13
+ def_delegators :@database, :export, :import, :copy, :ensure_db_exists
14
14
  end
@@ -11,7 +11,7 @@ describe DatabaseExporter do
11
11
  describe '#export, #import, #copy' do
12
12
  it 'all exist (and are delegated to the adapter)' do
13
13
  exporter = DatabaseExporter.new({'adapter' => 'mysql2'})
14
- [:export, :import, :copy].each do |method|
14
+ [:export, :import, :copy, :ensure_db_exists].each do |method|
15
15
  exporter.respond_to?(method).should be_true
16
16
  end
17
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: database_exporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: