factorylabs-adapter_extensions 0.5.1 → 0.5.2

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.
@@ -54,7 +54,7 @@ module ActiveRecord #:nodoc:
54
54
  q << " ENCLOSED BY '#{options[:fields][:enclosed_by]}'" if options[:fields][:enclosed_by]
55
55
  end
56
56
  q << " IGNORE #{options[:ignore]} LINES" if options[:ignore]
57
- q << " (#{options[:columns].map { |c| quote(c) }.join(',')})" if options[:columns]
57
+ q << " (#{options[:columns].map { |c| quote(c.to_s) }.join(',')})" if options[:columns]
58
58
  execute(q)
59
59
  end
60
60
 
@@ -3,7 +3,7 @@ module AdapterExtensions#:nodoc:
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 5
6
- TINY = 1
6
+ TINY = 2
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 1
9
- version: 0.5.1
8
+ - 2
9
+ version: 0.5.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Anthony Eden