pseudolocalization 0.8.3 → 0.8.4

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: 991ea4b4a56c26ead8a124c46649202ccfc6e9b88de0a279e47f313da3c64f1e
4
- data.tar.gz: 6ffe520f2b4d177902c54262f75f3a3b3f065cc4281ac38a6bee27adb286535e
3
+ metadata.gz: a7bcc4fee756deba3c77c8c816ef2149b675b1135c61f21c4d41e754dbd72c52
4
+ data.tar.gz: 89a2a43c030b76e63f8375ed81a16d32d60746c27bc5e0fd324cc6ba343df0f8
5
5
  SHA512:
6
- metadata.gz: ba3013b5b91edaa8338fba3be242224331faf986c174fedf7bf38cdec38f69a4eb0ada28be8ca25daeb19283cb64ae4021630ee0ab10d98703edb7250ab71661
7
- data.tar.gz: 30e586e6d7dd9daf9758ae96bbd4f918c5c5f8c9147dcf68ee25ae58724b6d9681c0108eb857217a53ad01e959224a93aa3e441e1fa8d9a69c0bff49fd0fe1d3
6
+ metadata.gz: 19e144f8851d3be73ae5adea066debfce38035e7610d6cd1993ed59c99f83dcef80c5f601b427d1089746ce89e8ce0280ef2f9e0a59baf51983d42a78e90e8df
7
+ data.tar.gz: 6831bf06bb73be3911670220c8ff0330cda9e8aa4b9da694fc7b2cdf05e2ee269d5772a695df6607e81f10171cf95c46e000825d7ae1107bf3a052ffaada5463
@@ -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
- # Apply default reviewer and label to created
10
- # pull requests
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
- default_labels:
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
@@ -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.3...HEAD
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
@@ -1,4 +1,4 @@
1
- ruby '~> 2.4'
1
+ ruby '>= 2.4'
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pseudolocalization (0.8.3)
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.0)
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.1)
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 2.4.2p198
50
+ ruby 3.0.0p0
51
51
 
52
52
  BUNDLED WITH
53
- 2.1.4
53
+ 2.2.4
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Pseudolocalization [![Version][gem]][gem_url] [![Build Status](https://travis-ci.org/Shopify/pseudolocalization.svg?branch=master)](https://travis-ci.org/Shopify/pseudolocalization)
1
+ # Pseudolocalization [![Version][gem]][gem_url] [![Build Status](https://github.com/Shopify/pseudolocalization/workflows/CI/badge.svg?branch=master)](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
@@ -3,7 +3,7 @@ name: pseudolocalization
3
3
  type: ruby
4
4
 
5
5
  up:
6
- - ruby: 2.7.0
6
+ - ruby: 2.7.2
7
7
  - bundler
8
8
 
9
9
  commands:
@@ -5,6 +5,7 @@ module Pseudolocalization
5
5
  [
6
6
  "<.*?>",
7
7
  "{{.*?}}",
8
+ "%{.*?}",
8
9
  "https?:\/\/\\S+",
9
10
  "&\\S*?;"
10
11
  ].join('|')
@@ -1,3 +1,3 @@
1
1
  module Pseudolocalization
2
- VERSION = "0.8.3"
2
+ VERSION = "0.8.4"
3
3
  end
@@ -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://travis-ci.org/Shopify/pseudolocalization
9
+ ci_url: https://github.com/Shopify/pseudolocalization/workflows/CI
data/shipit.yml CHANGED
@@ -1,6 +1,10 @@
1
1
  ci:
2
2
  require:
3
- - "Travis CI - Branch"
3
+ - 'Ruby 2.4 Gemfile'
4
+ - 'Ruby 2.5 Gemfile'
5
+ - 'Ruby 2.6 Gemfile'
6
+ - 'Ruby 2.7 Gemfile'
7
+ - 'Ruby 3 Gemfile'
4
8
  deploy:
5
9
  override:
6
10
  - bundle exec rake build
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.3
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: 2020-01-15 00:00:00.000000000 Z
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.1.2
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: []
@@ -1,15 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.4.9
4
- - 2.5.7
5
- - 2.6.5
6
- - 2.7.0
7
- before_install:
8
- - gem update --system
9
- - gem install bundler -v '2.1.4'
10
- cache:
11
- bundler: true
12
- install:
13
- - bundle install
14
- script:
15
- - bundle exec rake test