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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8155545d48fb554da7c2324bf13749019a31d814f0b56b8b90a0c11424b2ad35
4
- data.tar.gz: 8073b769b478b30f3f87e494fad61a6f940f6cecbf6d8b006b23dbaa65626647
3
+ metadata.gz: 81a9dcbc3604388174a753a45576b298e6829a52252c569d6305c54038995d5b
4
+ data.tar.gz: 5cc7171b9e825bdbf83e8fe5a8650e3372287dbd815ad4b000e17dd7b7cf6303
5
5
  SHA512:
6
- metadata.gz: 1cbf7246e86137adcf7ce79622ff1c0108a65a72f72abd0ab14f345f74720940a417f01787b09f4f3b459c62dd20a1521b4bc2b2e7d05d5b6fb92f56afd2de06
7
- data.tar.gz: a52c220de33351f05c0d71196293cc83dcda2062e10f13d808d2ef595aa4de22ca7877d851a27cd33bc258e381b2403d2852ccdc0a8d84b30304bc9aacc9f3ed
6
+ metadata.gz: 90613bd4d7ac0fc82907f007364d6dc1e541dc04b89b5cc66e3daa9f83f1d18bb088af19595a1ba5dc647e8a43d4d27aecbe28275213a1d7fdfb03ee22051990
7
+ data.tar.gz: 51bd2542a57f58469784800f79bd6468e2287d590779ea137299d467c7f5f5d07f3d4c69fb5353b8e39e67bbf9e14147f9f302f0f4fc053dec9b21e6b3fbdaa2
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  /*.gem
2
2
  /*.html
3
3
  /Gemfile.lock
4
+ *.ruby-version
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module TableFormat
2
- VERSION = '0.0.10'
2
+ VERSION = '0.0.11'
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.10
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: 2021-11-18 00:00:00.000000000 Z
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.2.31
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.