dbhijacker 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dbhijacker (0.6.0)
4
+ dbhijacker (0.6.1)
5
5
  rails (~> 2.3.14)
6
6
 
7
7
  GEM
data/hijacker.gemspec CHANGED
@@ -3,7 +3,7 @@
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{dbhijacker}
5
5
  s.homepage = "https://github.com/crystalcommerce/hijacker"
6
- s.version = "0.6.0"
6
+ s.version = "0.6.1"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.authors = ["Michael Xavier", "Donald Plummer", "Woody Peterson"]
data/lib/hijacker.rb CHANGED
@@ -87,7 +87,9 @@ module Hijacker
87
87
 
88
88
  @host_connections ||= {}
89
89
 
90
- existing_dbs = Host.all.inject(Set.new) do |acc, host|
90
+ aliases = Hijacker::Alias.all(:select => :name).map(&:name)
91
+
92
+ existing_dbs = Host.all.inject(Set.new(aliases)) do |acc, host|
91
93
  @host_connections[host.hostname] ||= Mysql2::Client.new(root_config.merge('host' => host.hostname))
92
94
  @host_connections[host.hostname].query("SHOW DATABASES").each do |row|
93
95
  acc << row['Database']
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dbhijacker
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 0
10
- version: 0.6.0
9
+ - 1
10
+ version: 0.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Xavier