csv_converter 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +13 -0
- data/csv_converter.gemspec +1 -0
- data/lib/csv_converter/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97c78bda527ba0a1f5899b1337750df8a5d1c4f742db4a0701ec8c1dc4daff81
|
4
|
+
data.tar.gz: 98a583a18c53d92cb1892f87bb1c1d360dfe2b26373d4185cc2554f0a1de6515
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d30d4170825eaa841663797d7fdbf5973619c682b81dd6c5efce7f89ece1cb457ae7b12ffd9815f34ad0295c8a13387fa0f339c46f3dd6eaf63f1017390f8d27
|
7
|
+
data.tar.gz: 975146efbbdc6d11e1405249fb65fcb62e3d370b6f513cd269bd32c0fb6e42944adf6002213a916057cfad15f95d2f363e1f284ce7068ad48bccd7a65594aed5
|
data/README.md
CHANGED
@@ -116,6 +116,19 @@ Or install it yourself as:
|
|
116
116
|
|
117
117
|
$ gem install csv_converter
|
118
118
|
|
119
|
+
## Documentation
|
120
|
+
You can view the csv_converter documentation in RDoc format here:
|
121
|
+
|
122
|
+
https://rubydoc.info/github/francisco-rojas/csv_converter/master
|
123
|
+
|
124
|
+
You can also view the wiki here:
|
125
|
+
|
126
|
+
https://github.com/francisco-rojas/csv_converter/wiki
|
127
|
+
|
128
|
+
Finally, you can check the Readme and source code here:
|
129
|
+
|
130
|
+
https://github.com/francisco-rojas/csv_converter
|
131
|
+
|
119
132
|
## Development
|
120
133
|
|
121
134
|
Currently, the library is stable. I believe it supports the most common use cases so most likely the code won't be updated very frequently. However, if you have any feature requests or find a bug feel free to open a github issue and I will reply as soon as I can.
|
data/csv_converter.gemspec
CHANGED
@@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.description = 'Groups and converts tabulated data based on the mappings provided'
|
15
15
|
spec.homepage = 'https://github.com/francisco-rojas/csv_converter'
|
16
16
|
spec.license = 'MIT'
|
17
|
+
spec.required_ruby_version = '>= 2.5'
|
17
18
|
|
18
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
19
20
|
spec.metadata['wiki_uri'] = 'https://github.com/francisco-rojas/csv_converter/wiki'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csv_converter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francisco Rojas
|
@@ -160,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
160
160
|
requirements:
|
161
161
|
- - ">="
|
162
162
|
- !ruby/object:Gem::Version
|
163
|
-
version: '
|
163
|
+
version: '2.5'
|
164
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
165
|
requirements:
|
166
166
|
- - ">="
|