ruby-informix 0.8.2 → 0.8.3

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog +5 -0
  3. data/ext/extconf.rb +4 -4
  4. data/lib/informix.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ac698ef861cd70166703f77f739a2e91c4b2fa1
4
- data.tar.gz: a74fac6fa835cecf09efb2270959a96ef2fd450f
3
+ metadata.gz: 38ed601f84c4c6e32e47dd27c530dfe101bd5b2e
4
+ data.tar.gz: e034830f3c31a58511067a856de9dca1202aac14
5
5
  SHA512:
6
- metadata.gz: c0b0236372a3a3af5b74114fee66311f23682dac500078a0cb8b85caaacc580caccc0e32edf91d08a0c598af54c9f4220ff4dc5c15873a79964030c67f7088a9
7
- data.tar.gz: 7e78ee3e961d416828c7c66e4562505ed1e7f7927f2fe5769456af379057315f2d84ac45ea703ff81dd8a8bdc30f69d00cc984ad389b1bad7eccf659b751e098
6
+ metadata.gz: 4e8bd60a4cb229fdf22e4e22536eb783e394aee2973b5dd35c7b147c905aca0cd4f5872143849bba00aa18120656c68204fde11b6926e5c52fa3d4fd491f1496
7
+ data.tar.gz: e81ee15242bd3303a4fb083ca238a5401f9d68852fecef6a72607822a34fcfe9542d190b8e65786a1811fb620ae9b3c8a87413491115f38355a2fb832b19101c
data/Changelog CHANGED
@@ -1,3 +1,8 @@
1
+ 0.8.3 2017-04-26
2
+ ------------------
3
+ Bugs fixed:
4
+ * fixes an error that prevented the gem from being built
5
+
1
6
  0.8.2 2017-04-25
2
7
  ------------------
3
8
  Minor changes:
@@ -1,6 +1,6 @@
1
1
  require 'mkmf'
2
2
 
3
- env = libs = nil
3
+ env = nil
4
4
  informixdir = ENV["INFORMIXDIR"]
5
5
  MSWindows = /djgpp|(cyg|ms|bcc)win|mingw/
6
6
 
@@ -17,17 +17,17 @@ ldefault << File.join(informixdir, 'lib', 'esql') if RUBY_PLATFORM !~ MSWindows
17
17
  dir_config("informix", idefault, ldefault)
18
18
 
19
19
  if RUBY_PLATFORM =~ MSWindows
20
- libs += File.join(informixdir, 'lib', 'isqlt09a.lib')
20
+ $libs += File.join(informixdir, 'lib', 'isqlt09a.lib')
21
21
  else
22
22
  env = "/usr/bin/env"
23
23
 
24
24
  %w(ifsql ifasf ifgen ifos ifgls).each do |lib|
25
- libs += " " + format(LIBARG, lib)
25
+ $libs += " " + format(LIBARG, lib)
26
26
  end
27
27
  $LIBPATH.each do |path|
28
28
  checkapi = File.join(path, 'checkapi.o')
29
29
  if File.exist?(checkapi)
30
- libs += " " + checkapi
30
+ $libs += " " + checkapi
31
31
  break
32
32
  end
33
33
  end
@@ -32,7 +32,7 @@ require 'informix/seqcursor'
32
32
  require 'informix/scrollcursor'
33
33
 
34
34
  module Informix
35
- VERSION = "0.8.2"
35
+ VERSION = "0.8.3"
36
36
  VERSION.freeze
37
37
 
38
38
  # Shortcut to create a +Database+ object connected to +dbname+ as
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-informix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerardo Santana Gomez Garrido