pg_migrate 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -5,6 +5,5 @@ gemspec
5
5
 
6
6
  group :development do
7
7
  gem 'rspec', '2.11.0'
8
- #gem 'files', :git => 'git@github.com:sethcall/files.git'
9
- gem 'files', :path => '/Users/seth/workspace/files'
8
+ gem 'files', :git => 'git@github.com:sethcall/files.git'
10
9
  end
data/Gemfile.lock CHANGED
@@ -1,16 +1,17 @@
1
+ GIT
2
+ remote: git@github.com:sethcall/files.git
3
+ revision: 9107f3ae6e24dbe67d8b1d27be6d122d72436382
4
+ specs:
5
+ files (0.2.1)
6
+
1
7
  PATH
2
8
  remote: .
3
9
  specs:
4
- pg_migrate (0.1.4)
10
+ pg_migrate (0.1.5)
5
11
  logging (= 1.7.2)
6
12
  pg (= 0.14.0)
7
13
  thor (= 0.15.4)
8
14
 
9
- PATH
10
- remote: /Users/seth/workspace/files
11
- specs:
12
- files (0.2.1)
13
-
14
15
  GEM
15
16
  remote: https://rubygems.org/
16
17
  specs:
@@ -38,8 +38,10 @@ module PgMigrate
38
38
  sql_reader = SqlReader.new
39
39
 
40
40
  connopts = local_options["connopts"]
41
+ connopts ||= {}
42
+
41
43
  if !connopts["port"].nil?
42
- connopts[:port] = connopts[:port].to_i
44
+ connopts["port"] = connopts["port"].to_i
43
45
  end
44
46
 
45
47
  migrator = Migrator.new(manifest_reader, sql_reader, connopts)
@@ -237,4 +239,4 @@ module PgMigrate
237
239
 
238
240
 
239
241
  end
240
- end
242
+ end
@@ -1,3 +1,3 @@
1
1
  module PgMigrate
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_migrate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-05 00:00:00.000000000 Z
12
+ date: 2012-08-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: logging