GFunk911-dataload 0.3.3 → 0.3.4

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 (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/dataload/sample.rb +21 -3
  3. metadata +3 -6
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 3
2
+ :patch: 4
3
3
  :major: 0
4
4
  :minor: 3
@@ -1,6 +1,24 @@
1
+ require 'rubygems'
2
+ require 'dataload'
3
+
4
+ #setup the sample source file
5
+ source_filename = File.dirname(__FILE__) + "/sample_source.csv"
6
+ source_text = <<EOF
7
+ name,age,city,state
8
+ Bob Smith,24,Atlanta,GA
9
+ Jane Doe,35,Buffalo,NY
10
+ Evan Stein,31,Princeton,NJ
11
+ EOF
12
+ File.create(source_filename,source_text)
13
+
14
+ #load into a database, creating the table if needed
1
15
  dataload do
2
- source "source.csv"
16
+ source source_filename
3
17
  database :adapter => 'sqlite3', :database => "db.sqlite3", :timeout => 5000
4
- table 'foobar'
5
- string(:cat) { bar + "_cat" }
18
+ table 'people'
19
+ string(:full_name) { name }
20
+ string(:first_name) { name.split[0] }
21
+ string(:last_name) { name.split[1] }
22
+ integer(:age)
23
+ string(:city_state) { "#{city}, #{state}" }
6
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: GFunk911-dataload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Harris
@@ -52,17 +52,14 @@ extra_rdoc_files:
52
52
  - README.rdoc
53
53
  - LICENSE
54
54
  files:
55
- - README.rdoc
56
- - VERSION.yml
57
- - lib/dataload
58
- - lib/dataload/db.sqlite3
59
55
  - lib/dataload/loader.rb
60
56
  - lib/dataload/sample.rb
61
- - lib/dataload/source.csv
62
57
  - lib/dataload.rb
63
58
  - spec/dataload_spec.rb
64
59
  - spec/spec_helper.rb
65
60
  - LICENSE
61
+ - README.rdoc
62
+ - VERSION.yml
66
63
  has_rdoc: true
67
64
  homepage: http://github.com/GFunk911/dataload
68
65
  post_install_message: