tabular 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 06bed6b335edf9465b7f56b489f5544ec11b4ee4
4
- data.tar.gz: 8679fb4cd37f748c6f9f0f6e9fe80e01af31cb49
2
+ SHA256:
3
+ metadata.gz: a32babb258d44b285f43353674539506109322986cc3034a4728e272b66da3e8
4
+ data.tar.gz: fe437e4d8c27d1d448a7de853984a75dbf556683c2569fe166485e3fe7ca5360
5
5
  SHA512:
6
- metadata.gz: 70e496dbbf3fce7bc1350905279fb895d64197f8f4403de65572317661b6d64024ee94d2377aa0e5225840e5c9a8cc80ae3bf1fe9b09d5fca4b44ff142ac7ab3
7
- data.tar.gz: 3a35d6603c2c8fe97b8db93ed19817e347530f2b596d2cf9fc8a6b681e55a26f05271fbca172581f8e36123d48457038a82a347e1320e16b5d237b834a110c0c
6
+ metadata.gz: b8bbc4c8468a2c7438652cbcbe4fd643e89a20031a11ed0a7f0a0bbff1fb419c282a90c7cbef156ecbfd7ca8886013ec5970a989be9b16a4b0f8a0082273844d
7
+ data.tar.gz: 940e1cc2c7070692f349e1702f7bdaee670d985ffe20fdd7d57a1aaaac4c99fcc0a5b5f00b49837bdd4f6c0816c74926788e8c68a2821660652f15d21e4e0f24
data/Gemfile CHANGED
@@ -1,5 +1,10 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem "rake"
4
- gem "roo", github: "roo-rb/roo"
5
- gem "roo-xls", github: "roo-rb/roo-xls"
3
+ git_source(:github) { |name| "https://github.com/#{name}.git" }
4
+
5
+ gem "minitest", "~> 5.8"
6
+ gem "rake", "~> 10.4"
7
+ gem "roo-xls", "~> 0.0.1", github: "roo-rb/roo-xls", ref: "a316a88d042ca6e28a83c46a0db1906a9feebb62"
8
+ gem "roo", "~> 2.0", github: "roo-rb/roo", ref: "12f3f7b1b9c7cc31cada36db360125531d408405"
9
+
10
+ gemspec
@@ -1,6 +1,7 @@
1
1
  GIT
2
- remote: git://github.com/roo-rb/roo-xls.git
2
+ remote: https://github.com/roo-rb/roo-xls.git
3
3
  revision: a316a88d042ca6e28a83c46a0db1906a9feebb62
4
+ ref: a316a88d042ca6e28a83c46a0db1906a9feebb62
4
5
  specs:
5
6
  roo-xls (0.0.1)
6
7
  nokogiri
@@ -8,29 +9,41 @@ GIT
8
9
  spreadsheet (> 0.9.0)
9
10
 
10
11
  GIT
11
- remote: git://github.com/roo-rb/roo.git
12
+ remote: https://github.com/roo-rb/roo.git
12
13
  revision: 12f3f7b1b9c7cc31cada36db360125531d408405
14
+ ref: 12f3f7b1b9c7cc31cada36db360125531d408405
13
15
  specs:
14
16
  roo (2.0.0)
15
17
  nokogiri
16
18
  rubyzip (>= 1.0.0)
17
19
 
20
+ PATH
21
+ remote: .
22
+ specs:
23
+ tabular (0.4.3)
24
+
18
25
  GEM
19
26
  remote: https://rubygems.org/
20
27
  specs:
21
- mini_portile (0.6.2)
22
- nokogiri (1.6.5)
23
- mini_portile (~> 0.6.0)
28
+ mini_portile2 (2.3.0)
29
+ minitest (5.8.3)
30
+ nokogiri (1.8.3)
31
+ mini_portile2 (~> 2.3.0)
24
32
  rake (10.4.2)
25
- ruby-ole (1.2.11.8)
26
- rubyzip (1.1.6)
27
- spreadsheet (1.0.0)
33
+ ruby-ole (1.2.12.1)
34
+ rubyzip (1.2.1)
35
+ spreadsheet (1.1.7)
28
36
  ruby-ole (>= 1.0)
29
37
 
30
38
  PLATFORMS
31
39
  ruby
32
40
 
33
41
  DEPENDENCIES
34
- rake
35
- roo!
36
- roo-xls!
42
+ minitest (~> 5.8)
43
+ rake (~> 10.4)
44
+ roo (~> 2.0)!
45
+ roo-xls (~> 0.0.1)!
46
+ tabular!
47
+
48
+ BUNDLED WITH
49
+ 1.16.2
data/README CHANGED
@@ -62,6 +62,7 @@ There's basic test coverage. More comprehensive test coverage needs to be extrac
62
62
 
63
63
  Changes
64
64
  -------
65
+ 0.4.3 Gem updates
65
66
  0.4.2 Refactor minor ugly things. No behavior changes.
66
67
  0.4.0 rchristensen: Add sheet argument to Table.read
67
68
  0.3.0 Revise Table creation methods to something sensible. Use Roo to read
@@ -95,4 +96,4 @@ Changes
95
96
  Copyright
96
97
  ---------
97
98
 
98
- Copyright (c) 2014 Scott Willson. See LICENSE for details.
99
+ Copyright (c) 2018 Scott Willson. See LICENSE for details.
@@ -1,3 +1,3 @@
1
1
  module Tabular
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
@@ -34,9 +34,7 @@ Gem::Specification.new do |s|
34
34
  "tabular.gemspec"
35
35
  ]
36
36
  s.homepage = "http://github.com/scottwillson/tabular"
37
+ s.license = "MIT"
37
38
  s.require_paths = ["lib"]
38
39
  s.summary = "Read, write, and manipulate CSV, tab-delimited and Excel data"
39
-
40
- s.add_development_dependency "roo", "~> 2.0"
41
- s.add_development_dependency "roo-xls", "~> 0.0.1"
42
40
  end
metadata CHANGED
@@ -1,43 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabular
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Willson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-18 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: roo
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '2.0'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '2.0'
27
- - !ruby/object:Gem::Dependency
28
- name: roo-xls
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 0.0.1
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 0.0.1
11
+ date: 2018-07-02 00:00:00.000000000 Z
12
+ dependencies: []
41
13
  description: Tabular is a Ruby library for reading, writing, and manipulating CSV,
42
14
  tab-delimited and Excel data.
43
15
  email: scott.willson@gmail.com
@@ -66,7 +38,8 @@ files:
66
38
  - lib/tabular/zero.rb
67
39
  - tabular.gemspec
68
40
  homepage: http://github.com/scottwillson/tabular
69
- licenses: []
41
+ licenses:
42
+ - MIT
70
43
  metadata: {}
71
44
  post_install_message:
72
45
  rdoc_options: []
@@ -84,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
57
  version: '0'
85
58
  requirements: []
86
59
  rubyforge_project:
87
- rubygems_version: 2.4.8
60
+ rubygems_version: 2.7.7
88
61
  signing_key:
89
62
  specification_version: 4
90
63
  summary: Read, write, and manipulate CSV, tab-delimited and Excel data