activerecord-ingres-adapter 4.0.0 → 4.0.1

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: 20c64a2c0d80f449bed1443f9bf017995f9723eb
4
- data.tar.gz: a8e13cb6bf573cb33623bcc71dd4d5d32c509501
3
+ metadata.gz: 019cf9128993aeffdd776f853ff28b6b5cfabf9c
4
+ data.tar.gz: 385d240f4c6dc51ec5eb5f3c4102e3bdc63c2437
5
5
  SHA512:
6
- metadata.gz: c4a8183275860990ec2627806673358138d247f13f26b2017be0c7e741eae36766ccca13780bfd3ebd893ee148d50ade406783715f2b47e04796befc531b87f8
7
- data.tar.gz: 506a6c9a959d09349138380e141ee5d73aecaf29e41d2db81131162a9ef2e9e4c14498adfc553eddd3b192e8fc4e2635de4d8a0c27a4148555a6fb8d7aad506b
6
+ metadata.gz: a908e9211e4090a60c29165362ca852496909cc6c24a1ec5551ce4e9bd9bd313f27fa4ed7d8afb0670eb75791f5de72da44c9bb0ccdabb83439909437628e345
7
+ data.tar.gz: de9b10dbea3d6c4f6a919648ceeddfc2d70a09d83c76c70eb08e44a5073eb7a8383724b1738cde061d490cb09b4ee7eb20edb8b5d9dc43f71872d86743496351
data/README.md CHANGED
@@ -53,7 +53,7 @@ I maintain compatibility for Rails 3.2.x and Arel 3 in the 3-0-stable branch. Us
53
53
 
54
54
  I maintain compatibility for Rails 4 and Arel 4/5 in the 4-0-stable branch. Using rubygems you can do:
55
55
 
56
- $ gem install activerecord-ingres-adapter -v 4.0.0
56
+ $ gem install activerecord-ingres-adapter -v 4.0.1
57
57
 
58
58
  ## TODO
59
59
 
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "activerecord-ingres-adapter"
6
- s.version = "4.0.0"
6
+ s.version = "4.0.1"
7
7
  s.summary = "ActiveRecord Ingres Adapter"
8
8
  s.email = "felix.bellanger@gmail.com"
9
9
  s.homepage = "https://github.com/Keeguon/activerecord-ingres-adapter"
@@ -681,7 +681,7 @@ module ActiveRecord
681
681
  end
682
682
 
683
683
  def select(sql, name = nil, binds = [])
684
- exec_query(sql, name, binds).to_a
684
+ exec_query(sql, name, binds)
685
685
  end
686
686
 
687
687
  def column_definitions(table_name)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-ingres-adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Croker