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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8dda342a45881d96ffeec6a23b57f9697d820a0
4
- data.tar.gz: 2d4a6c80305e3cf117f145d45ed789671e1934c7
3
+ metadata.gz: f344e2a43900f1128a70c785ff3a44c09dfafd66
4
+ data.tar.gz: a1a426fb38c924d516961b4faea9ff2b4f2f7e9a
5
5
  SHA512:
6
- metadata.gz: 70a2839490d96e0dbcc8b32376c816b5f833bbd9935aa81b97bf79ed0ce7d3e21dbe916b7e2339de5c56bb14070af71a9da4b619707af96ddeabb62985794fea
7
- data.tar.gz: faec279d9e961e3de45ad854527a4d4d5107c68720500b08c56d67c1364d0f12c4f7b4c9312df98b6bb12431a2903ad3848f363b97ba472205d4705c496626da
6
+ metadata.gz: 1720210634f493be7f44bd8cadbe7fa19940d4348da567209012007e7bc9fac6f3823a379311d517fdccb7af8c3f2cbf0954867b5cf22a0495fc9a4ea4c1eba2
7
+ data.tar.gz: e954a39fe171387efbcc22fdd72699285f814a739570e9574c16f31c7e890a93df9075a70989b95f8e9a465c88834238e18b70ac0f723124f511e9aafe611399
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Flat
2
2
 
3
- [![Build Status](https://travis-ci.org/juicyparts/flat.svg?branch=develop)](https://travis-ci.org/juicyparts/flat)
4
- [![Coverage Status](https://coveralls.io/repos/juicyparts/flat/badge.png?branch=develop)](https://coveralls.io/r/juicyparts/flat)
3
+ [![Build Status](https://travis-ci.org/juicyparts/flat.svg?branch=master)](https://travis-ci.org/juicyparts/flat)
4
+ [![Coverage Status](https://coveralls.io/repos/juicyparts/flat/badge.png?branch=master)](https://coveralls.io/r/juicyparts/flat)
5
+ [![Gem Version](https://badge.fury.io/rb/flat.svg)](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
 
@@ -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 = "http://rubydoc.info/github/juicyparts/flat"
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"
@@ -1,3 +1,3 @@
1
1
  module Flat #:nodoc:
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -5,7 +5,7 @@ describe Flat do
5
5
 
6
6
  describe 'Version' do
7
7
  it 'should verify current gem version' do
8
- expect(Flat::VERSION).to eq('0.1.0')
8
+ expect(Flat::VERSION).to eq('0.1.1')
9
9
  end
10
10
  end
11
11
 
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.0
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-25 00:00:00.000000000 Z
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: http://rubydoc.info/github/juicyparts/flat
216
+ homepage: https://github.com/juicyparts/flat
217
217
  licenses:
218
218
  - MIT
219
- metadata: {}
220
- post_install_message:
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
  - - ">="