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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 315899edcf8166179ea26996ede5fadaa052db6b039667c48427aabd2d6c6f90
4
- data.tar.gz: be1cf852a4a2c0e16fec95b6b18fcf313f548f447bf6bae5fea771efd44db59c
3
+ metadata.gz: 3e460326267ad0d7690972b194563b588f3690874d2bd36f4a987f79d1fd7dae
4
+ data.tar.gz: a8580828ad2f949ba524e033f8a8ec0e95e3c169b46fcb0cd6d60e796006b145
5
5
  SHA512:
6
- metadata.gz: d7074a99304c2b3bd8c4254cf4c43ab310c8af32e59064f1ebd1f72b784e38e4fb21c2738f816768312fb00cecc59a5d95d560be2c38a79686e588c296974a86
7
- data.tar.gz: 3ea872c374514fa6e07a96e836147b32f5d988ee2da097fe3ba848d4a1423a7e7adadd3c96a5795b4fe7f105ec0c211b2ba912e48b48f023cccdc4bd3a9bd4a3
6
+ metadata.gz: 1801e9f1b00e26a9cdf614bf2d62e508034b61e3142a36240eda8f1032b43d8443f48c1944c49d92104da2d019b588a72e227c827c74ba7f191fcb1521fc6c6d
7
+ data.tar.gz: 072a778d9711eb2adb2528bbaf86352337258e16620711975b34ccb8dd3ec004594ac2ff6b325275754cd856f9cbf89722e1b32fa8c83bcfd4b5258ec6179c9a
@@ -4,7 +4,7 @@ on:
4
4
  pull_request:
5
5
 
6
6
  push:
7
- branches: [ develop, master ]
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: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
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@v2
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: [ lint ]
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: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
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@v2
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.1
1
+ ruby 3.4.1
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Kerem Bozdas
3
+ Copyright (c) 2016-2025 Kerem Bozdas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Tate ✍️
2
2
 
3
- [![Build Status](https://img.shields.io/github/workflow/status/krmbzds/tate/Test/master)](https://github.com/krmbzds/tate/actions/workflows/test.yml)
3
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/krmbzds/tate/test.yml?branch=master)](https://github.com/krmbzds/tate/actions/workflows/test.yml)
4
4
  [![Coveralls](https://img.shields.io/coveralls/github/krmbzds/tate)](https://coveralls.io/github/krmbzds/tate)
5
5
  [![Maintainability](https://img.shields.io/codeclimate/maintainability/krmbzds/tate.svg)](https://codeclimate.com/github/krmbzds/tate/maintainability)
6
6
  [![Downloads](https://img.shields.io/gem/dt/tate.svg)](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.1.1` (stable)
131
- - ✅ `3.0.3` (stable)
132
- - ✅ `2.7.5` (stable)
133
- - ⏳ `2.6.9` (security maintenance)
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-2022 [Kerem Bozdas][Personal Webpage]
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tate
4
- VERSION = "1.7.0"
4
+ VERSION = "1.8.0"
5
5
  end
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.7.0
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: 2022-03-15 00:00:00.000000000 Z
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.3.7
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
-