csvash 1.1.1 → 1.1.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.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/.travis.yml +0 -1
- data/README.md +2 -0
- data/Rakefile +4 -1
- data/lib/csvash/version.rb +1 -1
- metadata +13 -20
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 233bba639110b4b7d988068ae78e6c8a88496588
|
4
|
+
data.tar.gz: 48055acbc5f12e4810886a83511a21515ed48ecd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 82e6197337946fb960bcdba2226ff528e23bc730ec7c38e671c2c85ce0b39262045b8d3c033344d6ef4f4d9f284a47c435ef83aed008c00e80bb659216bb6f24
|
7
|
+
data.tar.gz: 723b0504af43c02be90467dbd680690a1279371c2b969d0b54352f514d0f833b2995a09b3a9878c113febca4a85acd41126fee4136db84d25e31acc1d44eac12
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Csvash
|
2
2
|
|
3
|
+
[](http://travis-ci.org/lukasalexandre/csvash) [](https://codeclimate.com/github/lukasalexandre/csvash)
|
4
|
+
|
3
5
|
Got tired of parsing CSV files to your Models, or exporting into it?
|
4
6
|
Csvash automates that process for you. It handles your CSV extraction by mapping the document headers with your model properties and automagically creating new filled instances.
|
5
7
|
|
data/Rakefile
CHANGED
data/lib/csvash/version.rb
CHANGED
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csvash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.1.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Lukas Alexandre
|
@@ -10,29 +9,25 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 2013-03-07 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: rake
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - '>='
|
21
19
|
- !ruby/object:Gem::Version
|
22
20
|
version: '0'
|
23
21
|
type: :development
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - '>='
|
29
26
|
- !ruby/object:Gem::Version
|
30
27
|
version: '0'
|
31
|
-
description:
|
32
|
-
columns contents and turning them into hashes that can be easily converted into
|
33
|
-
ruby models.
|
28
|
+
description: Simplify CSV to Model mapping and vice versa.
|
34
29
|
email:
|
35
|
-
-
|
30
|
+
- lukasalexandre@me.com
|
36
31
|
- uriel.juliattivalle@gmail.com
|
37
32
|
executables: []
|
38
33
|
extensions: []
|
@@ -63,31 +58,29 @@ files:
|
|
63
58
|
- test/modelifying_test.rb
|
64
59
|
- test/overrides_test.rb
|
65
60
|
- test/test_helper.rb
|
66
|
-
homepage: https://github.com/
|
61
|
+
homepage: https://github.com/lukelex/csvash
|
67
62
|
licenses: []
|
63
|
+
metadata: {}
|
68
64
|
post_install_message:
|
69
65
|
rdoc_options: []
|
70
66
|
require_paths:
|
71
67
|
- lib
|
72
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
69
|
requirements:
|
75
|
-
- -
|
70
|
+
- - '>='
|
76
71
|
- !ruby/object:Gem::Version
|
77
72
|
version: '0'
|
78
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
|
-
none: false
|
80
74
|
requirements:
|
81
|
-
- -
|
75
|
+
- - '>='
|
82
76
|
- !ruby/object:Gem::Version
|
83
77
|
version: '0'
|
84
78
|
requirements: []
|
85
79
|
rubyforge_project:
|
86
|
-
rubygems_version:
|
80
|
+
rubygems_version: 2.0.2
|
87
81
|
signing_key:
|
88
|
-
specification_version:
|
89
|
-
summary:
|
90
|
-
contents and turning them into hashes that can be easily converted into ruby models.
|
82
|
+
specification_version: 4
|
83
|
+
summary: Simplify CSV to Model mapping and vice versa.
|
91
84
|
test_files:
|
92
85
|
- test/.DS_Store
|
93
86
|
- test/fixtures/.DS_Store
|