table_format 0.0.15 → 0.0.16
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
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f00e1e8399327b1651abb33fa72c06400843fd3e04aae71ac36fef66b3f2e2ef
|
4
|
+
data.tar.gz: f0379b5f92615fcb0215eb04a73260448461a08fef2accea59c0832d38145846
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb056ac12dcb67bd0c69f90c0154d261c99b04d3095b6975e4136b8348f925dc96bc91edb53eaa204fe2342e4bf76bc064207d4ab3b08af3e4aa2b12185450d3
|
7
|
+
data.tar.gz: 92d165bf8fb20f2b6d30bc39e570cfe9e4618f48216dc79383d2ba4891149d40461cb55eb3ddb26b7510893bd48f9a1a1812b559a3883e171d71687d4529897b
|
@@ -1,13 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
#
|
5
|
-
begin
|
6
|
-
require 'active_support/isolated_execution_state'
|
7
|
-
rescue LoadError
|
8
|
-
end
|
9
|
-
|
10
|
-
require 'active_support/core_ext/string' # for blank?
|
3
|
+
require 'active_support'
|
4
|
+
require 'active_support/core_ext/object/blank' # for blank?
|
11
5
|
require 'active_support/core_ext/class/attribute' # for class_attribute
|
12
6
|
require 'kconv'
|
13
7
|
|
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.16
|
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: 2023-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -113,7 +113,7 @@ files:
|
|
113
113
|
- examples/0150_line_break.rb
|
114
114
|
- examples/0160_truncate.rb
|
115
115
|
- examples/0170_emoji.rb
|
116
|
-
- examples/
|
116
|
+
- examples/0180_object.rb
|
117
117
|
- examples/0190_table_print.rb
|
118
118
|
- examples/0200_hankaku_katakana.rb
|
119
119
|
- lib/table_format.rb
|
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
150
|
- !ruby/object:Gem::Version
|
151
151
|
version: '0'
|
152
152
|
requirements: []
|
153
|
-
rubygems_version: 3.
|
153
|
+
rubygems_version: 3.4.12
|
154
154
|
signing_key:
|
155
155
|
specification_version: 4
|
156
156
|
summary: TableFormat shows text table like emacs org-table for easy reading.
|
File without changes
|