flat 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 +3 -2
- data/flat.gemspec +10 -1
- data/lib/flat/version.rb +1 -1
- data/spec/lib/flat_spec.rb +1 -1
- metadata +9 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f344e2a43900f1128a70c785ff3a44c09dfafd66
|
|
4
|
+
data.tar.gz: a1a426fb38c924d516961b4faea9ff2b4f2f7e9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1720210634f493be7f44bd8cadbe7fa19940d4348da567209012007e7bc9fac6f3823a379311d517fdccb7af8c3f2cbf0954867b5cf22a0495fc9a4ea4c1eba2
|
|
7
|
+
data.tar.gz: e954a39fe171387efbcc22fdd72699285f814a739570e9574c16f31c7e890a93df9075a70989b95f8e9a465c88834238e18b70ac0f723124f511e9aafe611399
|
data/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# Flat
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/juicyparts/flat)
|
|
4
|
+
[](https://coveralls.io/r/juicyparts/flat)
|
|
5
|
+
[](http://badge.fury.io/rb/flat)
|
|
5
6
|
|
|
6
7
|
Flat is a library to make processing Flat Flies as easy as CSV files. Easily process flat files with Flat. Specify the format in a subclass of Flat::File and read and write until the cows come home.
|
|
7
8
|
|
data/flat.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["mriffe@gmail.com"]
|
|
11
11
|
spec.summary = %q{Library to make processing Flat Flies as easy as CSV files.}
|
|
12
12
|
spec.description = %q{Easily process flat files with Flat. Specify the format in a subclass of Flat::File and read and write until the cows come home.}
|
|
13
|
-
spec.homepage = "
|
|
13
|
+
spec.homepage = "https://github.com/juicyparts/flat"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -18,6 +18,15 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
+
# Ruby 2.0 and above
|
|
22
|
+
spec.required_ruby_version = '>= 2.0'
|
|
23
|
+
spec.post_install_message = "Thanks for installing!"
|
|
24
|
+
spec.metadata = {
|
|
25
|
+
"source_code" => 'https://github.com/juicyparts/flat',
|
|
26
|
+
"documentation" => 'http://rubydoc.info/github/juicyparts/flat',
|
|
27
|
+
"issue_tracker" => "https://github.com/juicyparts/flat/issues",
|
|
28
|
+
}
|
|
29
|
+
|
|
21
30
|
spec.add_runtime_dependency "extlib", "~> 0.9.0"
|
|
22
31
|
|
|
23
32
|
spec.add_development_dependency "bundler", ">= 1.6.2" # was "~> 1.7"
|
data/lib/flat/version.rb
CHANGED
data/spec/lib/flat_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flat
|
|
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
|
- Mel Riffe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: extlib
|
|
@@ -213,11 +213,14 @@ files:
|
|
|
213
213
|
- spec/lib/flat/record_spec.rb
|
|
214
214
|
- spec/lib/flat_spec.rb
|
|
215
215
|
- spec/spec_helper.rb
|
|
216
|
-
homepage:
|
|
216
|
+
homepage: https://github.com/juicyparts/flat
|
|
217
217
|
licenses:
|
|
218
218
|
- MIT
|
|
219
|
-
metadata:
|
|
220
|
-
|
|
219
|
+
metadata:
|
|
220
|
+
source_code: https://github.com/juicyparts/flat
|
|
221
|
+
documentation: http://rubydoc.info/github/juicyparts/flat
|
|
222
|
+
issue_tracker: https://github.com/juicyparts/flat/issues
|
|
223
|
+
post_install_message: Thanks for installing!
|
|
221
224
|
rdoc_options: []
|
|
222
225
|
require_paths:
|
|
223
226
|
- lib
|
|
@@ -225,7 +228,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
225
228
|
requirements:
|
|
226
229
|
- - ">="
|
|
227
230
|
- !ruby/object:Gem::Version
|
|
228
|
-
version: '0'
|
|
231
|
+
version: '2.0'
|
|
229
232
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
230
233
|
requirements:
|
|
231
234
|
- - ">="
|