davidrichards-data_frame 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/data_frame.rb +1 -1
  3. metadata +1 -1
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 0
4
- :patch: 9
4
+ :patch: 10
data/lib/data_frame.rb CHANGED
@@ -38,7 +38,7 @@ class DataFrame
38
38
  # DataFrame.from_csv('http://example.com/my_special_url.csv', :converters => :special)
39
39
  # This returns bar where 'foo' was found and 'foo' everywhere else.
40
40
  def from_csv(obj, opts={})
41
- labels, table = infer_csv_contents(obj)
41
+ labels, table = infer_csv_contents(obj, opts)
42
42
  return nil unless labels and table
43
43
  df = new(*labels)
44
44
  df.import(table)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: davidrichards-data_frame
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Richards