rows2cols 1.0.0 → 1.0.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/lib/rows2cols/version.rb +2 -2
- data/rows2cols.gemspec +3 -3
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27dddf6e4864c4642aba849aceaf6e76a94a0663
|
|
4
|
+
data.tar.gz: 5fae0a77c7b29a99aafd0ede0cc340a43649dbfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 710002e2be271f00b49d1dc07fe455ba23df6b91230439f44a951277aba7976bb4040ad94a4760ebdc16e9a40e594608616281c55dc93bdbe89edc9654f8b3a7
|
|
7
|
+
data.tar.gz: e30f5f47cb7aff6dee406a777a034f84f1df96422fca87e6920bd7e90b6a72862c43201613a3e142f10b833576176e42378fa97704aef61a4aff1cb92c976f6e
|
data/lib/rows2cols/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
VERSION = "1.0.
|
|
1
|
+
class Rows2cols
|
|
2
|
+
VERSION = "1.0.1"
|
|
3
3
|
end
|
data/rows2cols.gemspec
CHANGED
|
@@ -5,11 +5,11 @@ require 'rows2cols/version'
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "rows2cols"
|
|
8
|
-
spec.version =
|
|
8
|
+
spec.version = Rows2cols::VERSION
|
|
9
9
|
spec.authors = ["Rob Miller"]
|
|
10
10
|
spec.email = ["rob@bigfish.co.uk"]
|
|
11
|
-
spec.summary = %q{
|
|
12
|
-
spec.description = %q{
|
|
11
|
+
spec.summary = %q{Transpose rows of text into columns}
|
|
12
|
+
spec.description = %q{Transpose rows of text, either from standard input or from files, into a configurable number of columns with a configurable separator character.}
|
|
13
13
|
spec.homepage = ""
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rows2cols
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Miller
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -38,8 +38,8 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
42
|
-
|
|
41
|
+
description: Transpose rows of text, either from standard input or from files, into
|
|
42
|
+
a configurable number of columns with a configurable separator character.
|
|
43
43
|
email:
|
|
44
44
|
- rob@bigfish.co.uk
|
|
45
45
|
executables:
|
|
@@ -76,9 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
78
|
rubyforge_project:
|
|
79
|
-
rubygems_version: 2.
|
|
79
|
+
rubygems_version: 2.4.5
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
|
-
summary:
|
|
82
|
+
summary: Transpose rows of text into columns
|
|
83
83
|
test_files: []
|
|
84
|
-
has_rdoc:
|