emoji-datasource 7.0.2 → 14.0.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/main.yml +13 -12
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/emoji-datasource.gemspec +5 -4
- data/lib/emoji_datasource/version.rb +1 -1
- data/package.json +1 -1
- data/vendor/emoji-datasource/emoji.json +1 -1
- data/yarn.lock +4 -4
- metadata +11 -11
- data/Gemfile.lock +0 -70
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3935f8318904fee0e0c3e662d843c7720e6ec2e7df4dafe98ffe7365d3f6236
|
|
4
|
+
data.tar.gz: a7c9b43189f238363cf275d68037970d5f3d5f03c379e6415bab44bab25ff938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2049e3e19cb85aa80dc0fe47604d3f715b02977d50cdd9cd345aecdd949f7dbaca7cc15c7a0e26078bc04803fe3c3cc4c1fd63e6f2822e3cf00cf2ed161a3aaa
|
|
7
|
+
data.tar.gz: ee10a8cb1a4cb899a659700363956aa97ab3994c74ce563fa7cd461a18e2ab92de669163e5c25df20d2c780e332084b4ef402127798d4bd78e32ecbbd130fce8
|
data/.github/workflows/main.yml
CHANGED
|
@@ -7,37 +7,38 @@ jobs:
|
|
|
7
7
|
name: Test
|
|
8
8
|
strategy:
|
|
9
9
|
matrix:
|
|
10
|
-
ruby: [2.
|
|
10
|
+
ruby: [2.6, 2.7, '3.0', 3.1, head]
|
|
11
11
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
-
|
|
15
|
+
- name: Checkout
|
|
16
|
+
uses: actions/checkout@v3
|
|
17
|
+
|
|
16
18
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
17
19
|
uses: ruby/setup-ruby@v1
|
|
18
20
|
with:
|
|
19
21
|
ruby-version: ${{ matrix.ruby }}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
gem install bundler
|
|
23
|
-
bundle install --jobs 4 --retry 3
|
|
22
|
+
bundler-cache: true
|
|
23
|
+
|
|
24
24
|
- name: RSpec
|
|
25
25
|
run: |
|
|
26
26
|
bundle exec rspec
|
|
27
|
+
|
|
27
28
|
rubocop:
|
|
28
29
|
name: RuboCop
|
|
29
30
|
runs-on: ubuntu-latest
|
|
30
31
|
|
|
31
32
|
steps:
|
|
32
|
-
-
|
|
33
|
+
- name: Checkout
|
|
34
|
+
uses: actions/checkout@v3
|
|
35
|
+
|
|
33
36
|
- name: Set up Ruby
|
|
34
37
|
uses: ruby/setup-ruby@v1
|
|
35
38
|
with:
|
|
36
|
-
ruby-version:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
gem install bundler
|
|
40
|
-
bundle install --jobs 4 --retry 3
|
|
39
|
+
ruby-version: 3.1
|
|
40
|
+
bundler-cache: true
|
|
41
|
+
|
|
41
42
|
- name: RuboCop
|
|
42
43
|
run: |
|
|
43
44
|
bundle exec rubocop
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -42,10 +42,10 @@ EmojiDatasource.short_name_to_char('+1::skin-tone-2') # => 👍
|
|
|
42
42
|
This library aims to support and is [tested against][github_actions] the following Ruby
|
|
43
43
|
implementations:
|
|
44
44
|
|
|
45
|
-
* Ruby 2.5.0
|
|
46
45
|
* Ruby 2.6.0
|
|
47
46
|
* Ruby 2.7.0
|
|
48
47
|
* Ruby 3.0.0
|
|
48
|
+
* Ruby 3.1.0
|
|
49
49
|
|
|
50
50
|
## License
|
|
51
51
|
|
data/emoji-datasource.gemspec
CHANGED
|
@@ -13,12 +13,13 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
'(https://github.com/iamcal/emoji-data) npm package'
|
|
14
14
|
spec.homepage = 'http://github.com/jpalumickas/emoji-datasource-ruby'
|
|
15
15
|
spec.license = 'MIT'
|
|
16
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
|
16
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
|
|
17
17
|
|
|
18
18
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
19
19
|
spec.metadata['source_code_uri'] = 'https://github.com/jpalumickas/emoji-datasource-ruby'
|
|
20
20
|
spec.metadata['changelog_uri'] = 'https://github.com/jpalumickas/emoji-datasource-ruby/releases'
|
|
21
21
|
spec.metadata['bug_tracker_uri'] = 'https://github.com/jpalumickas/emoji-datasource-ruby/issues'
|
|
22
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
22
23
|
|
|
23
24
|
# Specify which files should be added to the gem when it is released.
|
|
24
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
@@ -33,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
33
34
|
|
|
34
35
|
spec.add_development_dependency 'pry', '~> 0.14'
|
|
35
36
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
36
|
-
spec.add_development_dependency 'rspec', '~> 3.
|
|
37
|
-
spec.add_development_dependency 'rubocop', '~> 1.
|
|
38
|
-
spec.add_development_dependency 'simplecov', '~> 0.
|
|
37
|
+
spec.add_development_dependency 'rspec', '~> 3.12'
|
|
38
|
+
spec.add_development_dependency 'rubocop', '~> 1.45'
|
|
39
|
+
spec.add_development_dependency 'simplecov', '~> 0.22'
|
|
39
40
|
end
|
data/package.json
CHANGED