tate 1.7.0 → 1.8.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/.github/workflows/test.yml +6 -7
- data/.tool-versions +1 -1
- data/LICENSE.txt +1 -1
- data/README.md +7 -6
- data/lib/tate/version.rb +1 -1
- metadata +3 -7
- data/.github/workflows/publish.yml +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e460326267ad0d7690972b194563b588f3690874d2bd36f4a987f79d1fd7dae
|
4
|
+
data.tar.gz: a8580828ad2f949ba524e033f8a8ec0e95e3c169b46fcb0cd6d60e796006b145
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1801e9f1b00e26a9cdf614bf2d62e508034b61e3142a36240eda8f1032b43d8443f48c1944c49d92104da2d019b588a72e227c827c74ba7f191fcb1521fc6c6d
|
7
|
+
data.tar.gz: 072a778d9711eb2adb2528bbaf86352337258e16620711975b34ccb8dd3ec004594ac2ff6b325275754cd856f9cbf89722e1b32fa8c83bcfd4b5258ec6179c9a
|
data/.github/workflows/test.yml
CHANGED
@@ -4,7 +4,7 @@ on:
|
|
4
4
|
pull_request:
|
5
5
|
|
6
6
|
push:
|
7
|
-
branches: [
|
7
|
+
branches: [develop, master]
|
8
8
|
|
9
9
|
env:
|
10
10
|
GIT_COMMIT_SHA: ${{ github.sha }}
|
@@ -12,17 +12,16 @@ env:
|
|
12
12
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
13
13
|
|
14
14
|
jobs:
|
15
|
-
|
16
15
|
lint:
|
17
16
|
runs-on: ubuntu-latest
|
18
17
|
name: lint ${{ matrix.ruby }}
|
19
18
|
strategy:
|
20
19
|
fail-fast: false
|
21
20
|
matrix:
|
22
|
-
ruby: [
|
21
|
+
ruby: ["3.4.1", "3.3.6", "3.2.6", "3.1.6", "3.0.7"]
|
23
22
|
|
24
23
|
steps:
|
25
|
-
- uses: actions/checkout@
|
24
|
+
- uses: actions/checkout@v4
|
26
25
|
- uses: ruby/setup-ruby@v1
|
27
26
|
with:
|
28
27
|
ruby-version: ${{ matrix.ruby }}
|
@@ -33,16 +32,16 @@ jobs:
|
|
33
32
|
run: bundle exec standardrb --parallel --format progress
|
34
33
|
|
35
34
|
test:
|
36
|
-
needs: [
|
35
|
+
needs: [lint]
|
37
36
|
runs-on: ubuntu-latest
|
38
37
|
name: test ${{ matrix.ruby }}
|
39
38
|
strategy:
|
40
39
|
fail-fast: false
|
41
40
|
matrix:
|
42
|
-
ruby: [
|
41
|
+
ruby: ["3.4.1", "3.3.6", "3.2.6", "3.1.6", "3.0.7"]
|
43
42
|
|
44
43
|
steps:
|
45
|
-
- uses: actions/checkout@
|
44
|
+
- uses: actions/checkout@v4
|
46
45
|
- uses: ruby/setup-ruby@v1
|
47
46
|
with:
|
48
47
|
ruby-version: ${{ matrix.ruby }}
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.4.1
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Tate ✍️
|
2
2
|
|
3
|
-
[](https://github.com/krmbzds/tate/actions/workflows/test.yml)
|
4
4
|
[](https://coveralls.io/github/krmbzds/tate)
|
5
5
|
[](https://codeclimate.com/github/krmbzds/tate/maintainability)
|
6
6
|
[](https://rubygems.org/gems/tate)
|
@@ -127,10 +127,11 @@ Yes.
|
|
127
127
|
|
128
128
|
This gem is tested against the following Ruby versions:
|
129
129
|
|
130
|
-
- ✅ `3.
|
131
|
-
- ✅ `3.
|
132
|
-
- ✅ `2.
|
133
|
-
- ⏳ `
|
130
|
+
- ✅ `3.4.1` (stable)
|
131
|
+
- ✅ `3.3.6` (stable)
|
132
|
+
- ✅ `3.2.6` (stable)
|
133
|
+
- ⏳ `3.1.6` (security maintenance)
|
134
|
+
- 🪦 `3.0.7` (end of life)
|
134
135
|
|
135
136
|
## Development
|
136
137
|
|
@@ -162,7 +163,7 @@ Nobody has time to type transliterate in the terminal.
|
|
162
163
|
|
163
164
|
## License
|
164
165
|
|
165
|
-
Copyright © 2016-
|
166
|
+
Copyright © 2016-2025 [Kerem Bozdas][Personal Webpage]
|
166
167
|
|
167
168
|
This project is available under the terms of the [MIT License][License].
|
168
169
|
|
data/lib/tate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kerem Bozdas
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: i18n
|
@@ -103,7 +102,6 @@ executables:
|
|
103
102
|
extensions: []
|
104
103
|
extra_rdoc_files: []
|
105
104
|
files:
|
106
|
-
- ".github/workflows/publish.yml"
|
107
105
|
- ".github/workflows/test.yml"
|
108
106
|
- ".gitignore"
|
109
107
|
- ".rspec"
|
@@ -134,7 +132,6 @@ homepage: https://github.com/krmbzds/tate
|
|
134
132
|
licenses:
|
135
133
|
- MIT
|
136
134
|
metadata: {}
|
137
|
-
post_install_message:
|
138
135
|
rdoc_options: []
|
139
136
|
require_paths:
|
140
137
|
- lib
|
@@ -149,8 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
146
|
- !ruby/object:Gem::Version
|
150
147
|
version: '0'
|
151
148
|
requirements: []
|
152
|
-
rubygems_version: 3.
|
153
|
-
signing_key:
|
149
|
+
rubygems_version: 3.6.2
|
154
150
|
specification_version: 4
|
155
151
|
summary: Convert accented characters and transliterate non-latin alphabets to ASCII.
|
156
152
|
test_files: []
|
@@ -1,24 +0,0 @@
|
|
1
|
-
name: Publish
|
2
|
-
|
3
|
-
on:
|
4
|
-
release:
|
5
|
-
types: [published]
|
6
|
-
|
7
|
-
jobs:
|
8
|
-
build:
|
9
|
-
name: Publish Packages
|
10
|
-
runs-on: ubuntu-latest
|
11
|
-
|
12
|
-
steps:
|
13
|
-
- uses: actions/checkout@v2
|
14
|
-
|
15
|
-
- name: Set up Ruby
|
16
|
-
uses: ruby/setup-ruby@v1
|
17
|
-
with:
|
18
|
-
bundler-cache: true
|
19
|
-
|
20
|
-
- name: Publish to RubyGems
|
21
|
-
uses: dawidd6/action-publish-gem@v1
|
22
|
-
with:
|
23
|
-
api_key: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
24
|
-
|