table_format 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/table_format/generator.rb +8 -0
- data/lib/table_format/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81a9dcbc3604388174a753a45576b298e6829a52252c569d6305c54038995d5b
|
4
|
+
data.tar.gz: 5cc7171b9e825bdbf83e8fe5a8650e3372287dbd815ad4b000e17dd7b7cf6303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90613bd4d7ac0fc82907f007364d6dc1e541dc04b89b5cc66e3daa9f83f1d18bb088af19595a1ba5dc647e8a43d4d27aecbe28275213a1d7fdfb03ee22051990
|
7
|
+
data.tar.gz: 51bd2542a57f58469784800f79bd6468e2287d590779ea137299d467c7f5f5d07f3d4c69fb5353b8e39e67bbf9e14147f9f302f0f4fc053dec9b21e6b3fbdaa2
|
data/.gitignore
CHANGED
@@ -1,4 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Workaround of:
|
4
|
+
# uninitialized constant ActiveSupport::XmlMini::IsolatedExecutionState
|
5
|
+
begin
|
6
|
+
require 'active_support/isolated_execution_state'
|
7
|
+
rescue LoadError
|
8
|
+
end
|
9
|
+
|
2
10
|
require 'active_support/core_ext/string' # for blank?
|
3
11
|
require 'active_support/core_ext/class/attribute' # for class_attribute
|
4
12
|
require 'kconv'
|
data/lib/table_format/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: table_format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akicho8
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
148
|
- !ruby/object:Gem::Version
|
149
149
|
version: '0'
|
150
150
|
requirements: []
|
151
|
-
rubygems_version: 3.
|
151
|
+
rubygems_version: 3.3.4
|
152
152
|
signing_key:
|
153
153
|
specification_version: 4
|
154
154
|
summary: TableFormat shows text table like emacs org-table for easy reading.
|