upsert 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +6 -0
- data/lib/upsert/pg_connection.rb +4 -0
- data/lib/upsert/version.rb +1 -1
- data/test/test_pg.rb +2 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
data/lib/upsert/pg_connection.rb
CHANGED
data/lib/upsert/version.rb
CHANGED
data/test/test_pg.rb
CHANGED
@@ -16,7 +16,8 @@ describe Upsert::PG_Connection do
|
|
16
16
|
@opened_connections.each { |c| c.finish }
|
17
17
|
end
|
18
18
|
def new_connection
|
19
|
-
c = PG.
|
19
|
+
# c = PG::Connection.new(:dbname => 'test_upsert')
|
20
|
+
c = PGconn.new(:dbname => 'test_upsert')
|
20
21
|
@opened_connections << c
|
21
22
|
c
|
22
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: upsert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
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-06-
|
12
|
+
date: 2012-06-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sqlite3
|