pseudolocalization 0.8.3 → 0.8.4
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/.dependabot/config.yml +6 -11
- data/.github/workflows/ruby-ci.yml +32 -0
- data/CHANGELOG.md +11 -17
- data/Gemfile +1 -1
- data/Gemfile.lock +5 -5
- data/README.md +1 -1
- data/dev.yml +1 -1
- data/lib/pseudolocalization/pseudolocalizer.rb +1 -0
- data/lib/pseudolocalization/version.rb +1 -1
- data/service.yml +1 -2
- data/shipit.yml +5 -1
- metadata +7 -7
- data/.travis.yml +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7bcc4fee756deba3c77c8c816ef2149b675b1135c61f21c4d41e754dbd72c52
|
|
4
|
+
data.tar.gz: 89a2a43c030b76e63f8375ed81a16d32d60746c27bc5e0fd324cc6ba343df0f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e144f8851d3be73ae5adea066debfce38035e7610d6cd1993ed59c99f83dcef80c5f601b427d1089746ce89e8ce0280ef2f9e0a59baf51983d42a78e90e8df
|
|
7
|
+
data.tar.gz: 6831bf06bb73be3911670220c8ff0330cda9e8aa4b9da694fc7b2cdf05e2ee269d5772a695df6607e81f10171cf95c46e000825d7ae1107bf3a052ffaada5463
|
data/.dependabot/config.yml
CHANGED
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
version: 1
|
|
2
2
|
update_configs:
|
|
3
|
-
# Update your Gemfile (& lockfiles) as soon as
|
|
4
|
-
# new versions are published to the RubyGems registry
|
|
5
3
|
- package_manager: "ruby:bundler"
|
|
6
4
|
directory: "/"
|
|
7
5
|
update_schedule: "weekly"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
automerged_updates:
|
|
7
|
+
- match:
|
|
8
|
+
dependency_type: "all"
|
|
9
|
+
update_type: "all"
|
|
10
|
+
version_requirement_updates: "auto"
|
|
11
11
|
default_reviewers:
|
|
12
|
-
- ChristianBlais
|
|
13
12
|
- larouxn
|
|
14
|
-
|
|
15
|
-
- "Gem upgrades"
|
|
16
|
-
|
|
17
|
-
version_requirement_updates: "auto"
|
|
18
|
-
|
|
13
|
+
- ChristianBlais
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
- push
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
name: Ruby ${{ matrix.version }} ${{ matrix.gemfile }}
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
env:
|
|
11
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
version:
|
|
15
|
+
- 2.4
|
|
16
|
+
- 2.5
|
|
17
|
+
- 2.6
|
|
18
|
+
- 2.7
|
|
19
|
+
- 3.0
|
|
20
|
+
gemfile:
|
|
21
|
+
- Gemfile
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v2
|
|
24
|
+
|
|
25
|
+
- name: Set up Ruby ${{ matrix.version }}
|
|
26
|
+
uses: ruby/setup-ruby@v1
|
|
27
|
+
with:
|
|
28
|
+
ruby-version: ${{ matrix.version }}
|
|
29
|
+
bundler-cache: true
|
|
30
|
+
|
|
31
|
+
- name: Test
|
|
32
|
+
run: bundle exec rake test
|
data/CHANGELOG.md
CHANGED
|
@@ -4,41 +4,34 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
6
|
## Unreleased
|
|
7
|
+
Nil.
|
|
8
|
+
|
|
9
|
+
## [0.8.4] - 2021-01-15
|
|
10
|
+
### Added
|
|
11
|
+
- Added support for Ruby 3. [#53](https://github.com/Shopify/pseudolocalization/pull/53)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Switched to GitHub Actions for CI. [#52](https://github.com/Shopify/pseudolocalization/pull/52)
|
|
15
|
+
- Switched to Ruby 2.7.2 for development. [#55](https://github.com/Shopify/pseudolocalization/pull/55)
|
|
7
16
|
|
|
8
17
|
## [0.8.3] - 2020-01-15
|
|
9
18
|
### Added
|
|
10
19
|
- Added CLA probot to legitimize external contributions. [#35](https://github.com/shopify/pseudolocalization/pull/35)
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
13
|
-
- Upgraded `minitest` to v5.13.0. [#36](https://github.com/Shopify/pseudolocalization/pull/36)
|
|
14
|
-
- Upgraded `rake` to v13.0.1. [#37](https://github.com/Shopify/pseudolocalization/pull/37)
|
|
15
|
-
- Upgraded `minitest` to v5.14.0. [#38](https://github.com/Shopify/pseudolocalization/pull/38)
|
|
16
22
|
- Switched to Ruby 2.7.0 for development. [#39](https://github.com/Shopify/pseudolocalization/pull/39)
|
|
17
|
-
- Upgraded `bundler` to v2.1.4. [#40](https://github.com/Shopify/pseudolocalization/pull/40)
|
|
18
23
|
|
|
19
24
|
## [0.8.2] - 2019-10-08
|
|
20
25
|
### Added
|
|
21
|
-
- Added `ci_url` to `service.yml`. [#27](https://github.com/shopify/pseudolocalization/pull/27)
|
|
22
26
|
- Added this CHANGELOG.md. [#32](https://github.com/Shopify/pseudolocalization/pull/32)
|
|
23
27
|
|
|
24
28
|
### Changed
|
|
25
|
-
- Upgraded `minitest` to v5.12.0. [#29](https://github.com/shopify/pseudolocalization/pull/29)
|
|
26
|
-
- Upgraded `rake` to v13.0.0. [#30](https://github.com/shopify/pseudolocalization/pull/30)
|
|
27
|
-
- Upgraded `minitest` to v5.12.2. [#31](https://github.com/shopify/pseudolocalization/pull/31)
|
|
28
29
|
- Switched to Ruby 2.6.5 for development. [#33](https://github.com/Shopify/pseudolocalization/pull/33)
|
|
29
30
|
|
|
30
|
-
### Fixed
|
|
31
|
-
- Properly load README badges. [#28](https://github.com/shopify/pseudolocalization/pull/28)
|
|
32
|
-
|
|
33
31
|
## [0.8.1] - 2019-08-23
|
|
34
|
-
### Added
|
|
35
|
-
- Added Dependabot. (https://github.com/Shopify/pseudolocalization/pull/23)
|
|
36
|
-
|
|
37
32
|
### Changed
|
|
38
33
|
- Switched to Ruby 2.6.3 for development. [#22](https://github.com/Shopify/pseudolocalization/pull/22)
|
|
39
34
|
- Switched to Travis CI for CI solutions. [#22](https://github.com/Shopify/pseudolocalization/pull/22)
|
|
40
|
-
- Upgraded to package_cloud 0.3.05. [#24](https://github.com/Shopify/pseudolocalization/pull/24)
|
|
41
|
-
- Upgraded to Rake 12.3. [#25](https://github.com/Shopify/pseudolocalization/pull/25)
|
|
42
35
|
|
|
43
36
|
### Removed
|
|
44
37
|
- Removed Shopify Build CI. [#22](https://github.com/Shopify/pseudolocalization/pull/22)
|
|
@@ -55,7 +48,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
55
48
|
|
|
56
49
|
Please refer to [GitHub releases](https://github.com/Shopify/pseudolocalization/releases) for releases prior to [0.8.0].
|
|
57
50
|
|
|
58
|
-
[Unreleased]: https://github.com/Shopify/pseudolocalization/compare/0.8.
|
|
51
|
+
[Unreleased]: https://github.com/Shopify/pseudolocalization/compare/0.8.4...HEAD
|
|
52
|
+
[0.8.4]: https://github.com/Shopify/pseudolocalization/compare/0.8.3...0.8.4
|
|
59
53
|
[0.8.3]: https://github.com/Shopify/pseudolocalization/compare/0.8.2...0.8.3
|
|
60
54
|
[0.8.2]: https://github.com/Shopify/pseudolocalization/compare/0.8.1...0.8.2
|
|
61
55
|
[0.8.1]: https://github.com/Shopify/pseudolocalization/compare/0.8.0...0.8.1
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pseudolocalization (0.8.
|
|
4
|
+
pseudolocalization (0.8.4)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -16,7 +16,7 @@ GEM
|
|
|
16
16
|
mime-types (3.2.2)
|
|
17
17
|
mime-types-data (~> 3.2015)
|
|
18
18
|
mime-types-data (3.2019.0331)
|
|
19
|
-
minitest (5.14.
|
|
19
|
+
minitest (5.14.3)
|
|
20
20
|
netrc (0.11.0)
|
|
21
21
|
package_cloud (0.3.05)
|
|
22
22
|
highline (= 1.6.20)
|
|
@@ -26,7 +26,7 @@ GEM
|
|
|
26
26
|
thor (~> 0.18)
|
|
27
27
|
rainbow (2.2.2)
|
|
28
28
|
rake
|
|
29
|
-
rake (13.0.
|
|
29
|
+
rake (13.0.3)
|
|
30
30
|
rest-client (2.1.0)
|
|
31
31
|
http-accept (>= 1.7.0, < 2.0)
|
|
32
32
|
http-cookie (>= 1.0.2, < 2.0)
|
|
@@ -47,7 +47,7 @@ DEPENDENCIES
|
|
|
47
47
|
rake (~> 13.0)
|
|
48
48
|
|
|
49
49
|
RUBY VERSION
|
|
50
|
-
ruby
|
|
50
|
+
ruby 3.0.0p0
|
|
51
51
|
|
|
52
52
|
BUNDLED WITH
|
|
53
|
-
2.
|
|
53
|
+
2.2.4
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Pseudolocalization [![Version][gem]][gem_url] [](https://github.com/Shopify/pseudolocalization/actions?query=workflow%3ACI)
|
|
2
2
|
|
|
3
3
|
[gem]: https://badge.fury.io/rb/pseudolocalization.svg
|
|
4
4
|
[gem_url]: https://rubygems.org/gems/pseudolocalization
|
data/dev.yml
CHANGED
data/service.yml
CHANGED
|
@@ -2,9 +2,8 @@ org_line: International Growth
|
|
|
2
2
|
director: christianblais
|
|
3
3
|
owners:
|
|
4
4
|
- Shopify/intl-languages
|
|
5
|
-
- Shopify/intl-localization
|
|
6
5
|
- Shopify/intl-eng
|
|
7
6
|
slack_channels:
|
|
8
7
|
- intl-dev
|
|
9
8
|
classification: library
|
|
10
|
-
ci_url: https://
|
|
9
|
+
ci_url: https://github.com/Shopify/pseudolocalization/workflows/CI
|
data/shipit.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pseudolocalization
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Blais
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -47,8 +47,8 @@ extra_rdoc_files: []
|
|
|
47
47
|
files:
|
|
48
48
|
- ".dependabot/config.yml"
|
|
49
49
|
- ".github/probots.yml"
|
|
50
|
+
- ".github/workflows/ruby-ci.yml"
|
|
50
51
|
- ".gitignore"
|
|
51
|
-
- ".travis.yml"
|
|
52
52
|
- CHANGELOG.md
|
|
53
53
|
- Gemfile
|
|
54
54
|
- Gemfile.lock
|
|
@@ -68,7 +68,7 @@ homepage: https://github.com/Shopify/pseudolocalization
|
|
|
68
68
|
licenses:
|
|
69
69
|
- MIT
|
|
70
70
|
metadata: {}
|
|
71
|
-
post_install_message:
|
|
71
|
+
post_install_message:
|
|
72
72
|
rdoc_options: []
|
|
73
73
|
require_paths:
|
|
74
74
|
- lib
|
|
@@ -83,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
rubygems_version: 3.
|
|
87
|
-
signing_key:
|
|
86
|
+
rubygems_version: 3.2.5
|
|
87
|
+
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: Internationalization development tool
|
|
90
90
|
test_files: []
|
data/.travis.yml
DELETED