table_creator 0.3.0 → 0.4.0
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/.git-blame-ignore-revs +12 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -4
- data/lib/table_creator/version.rb +1 -1
- data/table_creator.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d983dd064833eb1721262b2299a012c5d51f3cd8b2ab8263e22648d920f0397
|
|
4
|
+
data.tar.gz: 3fd92e0ae3e588ef991f3b8ec85a6ad89f1dc79e416a09edad88935747f1b258
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b18c6728140a49979f11557dd4f93b407612a8c956ebf980f7c981df12ada27c18837f88a891672fc62a52b0faa016b89181431a4d636d37bb90727f6d627b0e
|
|
7
|
+
data.tar.gz: 42c9bc6f354b971a191e9c5fd677d7994e362e82e3705e0ac6229283f9986dcd68190577f0905da9123c13a4c9af969c22feacc6150393fbb9eec217308834f3
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# The commits that did automated reformatting. You can ignore them
|
|
2
|
+
# during git-blame with `--ignore-rev` or `--ignore-revs-file`.
|
|
3
|
+
# You can also globally configure GIT with the following command
|
|
4
|
+
#
|
|
5
|
+
# $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
|
|
6
|
+
#
|
|
7
|
+
# Example entries:
|
|
8
|
+
#
|
|
9
|
+
# <full commit hash> # initial black-format
|
|
10
|
+
# <full commit hash> # rename something internal
|
|
11
|
+
|
|
12
|
+
0efc4f078f1e3428f6da1e2838c35cdc475a24ac # Pretty CHANGELOG.md
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.2.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
- [PLAT-1175] Update to Ruby 3.2
|
|
6
|
+
|
|
3
7
|
## 0.3.0
|
|
4
8
|
|
|
5
9
|
- [PLAT=183] Add Ruby 3.1, Rails 7 and coverage-kit upgrade
|
|
@@ -10,10 +14,10 @@
|
|
|
10
14
|
|
|
11
15
|
## 0.1.1
|
|
12
16
|
|
|
13
|
-
|
|
17
|
+
- Restore support for manual links
|
|
14
18
|
|
|
15
19
|
## 0.1.0
|
|
16
20
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
- Improve class names
|
|
22
|
+
- Improve formatters
|
|
23
|
+
- Use coverage kit to enforce maximum coverage
|
data/table_creator.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
20
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
21
21
|
spec.require_paths = ["lib"]
|
|
22
|
-
spec.required_ruby_version = '>=
|
|
22
|
+
spec.required_ruby_version = '>= 3.0'
|
|
23
23
|
|
|
24
24
|
spec.add_dependency 'actionpack' # TagHelpers
|
|
25
25
|
spec.add_dependency 'activesupport' # Hash#except, blank?, etc.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: table_creator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Noack
|
|
@@ -114,6 +114,7 @@ executables: []
|
|
|
114
114
|
extensions: []
|
|
115
115
|
extra_rdoc_files: []
|
|
116
116
|
files:
|
|
117
|
+
- ".git-blame-ignore-revs"
|
|
117
118
|
- ".github/dependabot.yml"
|
|
118
119
|
- ".github/workflows/release.yml"
|
|
119
120
|
- ".github/workflows/ruby.yml"
|
|
@@ -152,14 +153,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
152
153
|
requirements:
|
|
153
154
|
- - ">="
|
|
154
155
|
- !ruby/object:Gem::Version
|
|
155
|
-
version: '
|
|
156
|
+
version: '3.0'
|
|
156
157
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
158
|
requirements:
|
|
158
159
|
- - ">="
|
|
159
160
|
- !ruby/object:Gem::Version
|
|
160
161
|
version: '0'
|
|
161
162
|
requirements: []
|
|
162
|
-
rubygems_version: 3.
|
|
163
|
+
rubygems_version: 3.4.1
|
|
163
164
|
signing_key:
|
|
164
165
|
specification_version: 4
|
|
165
166
|
summary: Manage sets of data and export.
|