ydbi 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: da76052065bbaf2af5b0aba4debf12d1861dda1f
4
- data.tar.gz: 9485b9ff72969b6cf416d3fb336edffa7bd16470
3
+ metadata.gz: 782e4ee8b56d616410d9210401d80a70ef2b89c7
4
+ data.tar.gz: 6dd8f415017492dd13647bfe9ca1cbf04c43c463
5
5
  SHA512:
6
- metadata.gz: aab14bee77df9df5c4bd48ba49f8a5f3560e108f56f90f421e72a338b5f5fb020bcfca4bde6d489b8d875a3c387c9d42e948cb0909170a736d32acd99a94aea8
7
- data.tar.gz: 0cc63a0944135fb014a1fd3e1670fa59cb889609b3aa127b443416535bedc48ac679a0d4fd637ed9cad341b8665fb853e45da67677b254c1f534502d93a10813
6
+ metadata.gz: b753c8634fef53ae69dd002fbbf56426088db5004a90ea312d97da4aed5b7929ba035bf314e889cc2f2595950b3fc6376da206a53bb9bba1a58ce0a782d5ce03
7
+ data.tar.gz: 793b8760c0deef670eb2a993426a635f6d3db4e75ccb7dddee0174f0a448a6a577705e97dc64d301537a429813ea1cf5105cb77196c6169b50401a6c3a7e9879
data/ChangeLog CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.5.5 - 15/01/2018
2
+
3
+ * Update to require pg >= 1.0.0
4
+ * Adapt to change for pg 1.0.0, fixed bundle exec rake test
5
+ * Remove no longer used method quote_array_elements
6
+
1
7
  ## 0.5.4 - 11/12/2017
2
8
 
3
9
  * Fix running under PostgreSQL 10.
@@ -1,3 +1,3 @@
1
1
  module DBI
2
- VERSION = "0.5.4"
2
+ VERSION = "0.5.5"
3
3
  end
data/readme.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Release a new ydbi gem
2
+
3
+ * rake ydbd-pg:clobber_package rake ydbd-pg:clobber_package; rake ydbi:gem ydbd-pg:gem
4
+ * gem push ydbd-pg-0.5.4.gem
5
+ * gem push ydbi-0.5.4.gem
6
+
1
7
  # Description
2
8
  The DBI package is a vendor independent interface for accessing databases.
3
9
  It is similar, but not identical to, Perl's DBI module.
@@ -75,6 +81,15 @@
75
81
  gem install dbd-sqlite3
76
82
  gem install dbd-sqlite
77
83
 
84
+ If you have a non standard path of postgres use something like
85
+
86
+ gem install pg -- --with-pg-config=/usr/local/pgsql-10.1/bin/pg_config
87
+
88
+ Or if you are using bundler
89
+
90
+ bundle config build.pg --with-pg-config=/usr/local/pgsql-10.1/bin/pg_config
91
+ bundle install
92
+
78
93
  ## Without rubygems:
79
94
 
80
95
  ruby setup.rb config
@@ -22,7 +22,7 @@ class TC_DBI < Test::Unit::TestCase
22
22
  end
23
23
 
24
24
  def test_dbi_version
25
- assert_equal("0.5.2", DBI::VERSION)
25
+ assert_equal("0.5.5", DBI::VERSION)
26
26
  end
27
27
 
28
28
  def test_dbd_module
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ydbi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Hollensbe
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-12-11 00:00:00.000000000 Z
12
+ date: 2018-01-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: deprecated