omf_oml 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -57,7 +57,7 @@ module OMF::OML
57
57
  schema = csv.headers.map do |c|
58
58
  c = c.encode('UTF-8', :invalid => :replace, :undef => :replace, :replace => '?')
59
59
  name, type = c.split(':')
60
- [name, type || 'string']
60
+ [name.strip, (type || 'string').strip]
61
61
  end
62
62
  end
63
63
  super tname, schema, opts
@@ -207,7 +207,7 @@ module OMF::OML
207
207
  schema_description.each_with_index do |cdesc, i|
208
208
  insert_column_at(i, cdesc)
209
209
  end
210
- debug "xschema: '#{describe.inspect}'"
210
+ debug "schema: '#{describe.inspect}'"
211
211
 
212
212
  end
213
213
 
@@ -6,6 +6,6 @@
6
6
  #-------------------------------------------------------------------------------
7
7
  module OMF
8
8
  module OML
9
- VERSION = '1.1.3'
9
+ VERSION = '1.1.4'
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omf_oml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
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: 2014-02-12 00:00:00.000000000 Z
12
+ date: 2014-03-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: omf_base