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: 951c7faf55e91b0292ccfaa5df26a84694a35daf0d8b5d685e2fefa304de0bfe
4
- data.tar.gz: 6bf8084836e02defeeb6da944dc0232ebb53e859e2600f28ad1a893817ad5cd2
3
+ metadata.gz: f00e1e8399327b1651abb33fa72c06400843fd3e04aae71ac36fef66b3f2e2ef
4
+ data.tar.gz: f0379b5f92615fcb0215eb04a73260448461a08fef2accea59c0832d38145846
5
5
  SHA512:
6
- metadata.gz: 1f795872dbcf42d7acf6258118eaaf5c2dc15023babbd126eaa06b93dde939a413bccc4039242dc3681a115df62ba5ac8fc75bb2b715ea1db273cb0f98ee794d
7
- data.tar.gz: b881f75d76c2beb947de2af4ea902772da60de79ed11e058d34d4154ba1d7d0bd835edec6e8ed3b040bd20c7810878d951a8a69cf842cc227134a398d356469e
6
+ metadata.gz: fb056ac12dcb67bd0c69f90c0154d261c99b04d3095b6975e4136b8348f925dc96bc91edb53eaa204fe2342e4bf76bc064207d4ab3b08af3e4aa2b12185450d3
7
+ data.tar.gz: 92d165bf8fb20f2b6d30bc39e570cfe9e4618f48216dc79383d2ba4891149d40461cb55eb3ddb26b7510893bd48f9a1a1812b559a3883e171d71687d4529897b
@@ -1,3 +1,4 @@
1
+ require 'active_support'
1
2
  require 'active_support/core_ext/kernel/concern'
2
3
 
3
4
  module TableFormat
@@ -1,13 +1,7 @@
1
1
  # frozen_string_literal: true
2
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
-
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
 
@@ -1,3 +1,3 @@
1
1
  module TableFormat
2
- VERSION = '0.0.15'
2
+ VERSION = '0.0.16'
3
3
  end
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.15
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: 2022-10-05 00:00:00.000000000 Z
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/0180_object_spec.rb
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.3.4
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