emoji-datasource 14.0.2 → 16.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 +4 -4
- data/.rubocop.yml +1 -1
- data/Gemfile +8 -0
- data/LICENSE +1 -1
- data/README.md +4 -1
- data/emoji-datasource.gemspec +1 -7
- 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 +5 -78
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee64aa3b1d6b49cd265e59eac01b190066a43cba3b5c15d551272b1a1574e2ef
|
|
4
|
+
data.tar.gz: 89e7f12f03f133f4ec46d1e5e6546978ff2b4ef57df0755d30f1163f5bb18b12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff1bcf6131ebe78224042972e702daf1b16753cec93ddd6ae7314f77e7f2a6324cffc780a92d19c5637d2ad2037951a24feaab3fd9a080f3d98cd81b1cbb03ff
|
|
7
|
+
data.tar.gz: cc12342f6b9fa6f454cd58203ba748492d84410758843a2d6e22b4a733350ed8173b0b25c66a9d20228119e8644f08ef96234b8a3033b2bcb7c3c5a6cb180b74
|
data/.github/workflows/main.yml
CHANGED
|
@@ -7,13 +7,13 @@ jobs:
|
|
|
7
7
|
name: Test
|
|
8
8
|
strategy:
|
|
9
9
|
matrix:
|
|
10
|
-
ruby: [2.
|
|
10
|
+
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, 3.4, '4.0', head]
|
|
11
11
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout
|
|
16
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@v6
|
|
17
17
|
|
|
18
18
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
19
19
|
uses: ruby/setup-ruby@v1
|
|
@@ -31,12 +31,12 @@ jobs:
|
|
|
31
31
|
|
|
32
32
|
steps:
|
|
33
33
|
- name: Checkout
|
|
34
|
-
uses: actions/checkout@
|
|
34
|
+
uses: actions/checkout@v6
|
|
35
35
|
|
|
36
36
|
- name: Set up Ruby
|
|
37
37
|
uses: ruby/setup-ruby@v1
|
|
38
38
|
with:
|
|
39
|
-
ruby-version: 3.
|
|
39
|
+
ruby-version: 3.4
|
|
40
40
|
bundler-cache: true
|
|
41
41
|
|
|
42
42
|
- name: RuboCop
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -4,3 +4,11 @@ source 'https://rubygems.org'
|
|
|
4
4
|
|
|
5
5
|
# Specify your gem's dependencies in emoji-datasource.gemspec
|
|
6
6
|
gemspec
|
|
7
|
+
|
|
8
|
+
group :development, :test do
|
|
9
|
+
gem 'pry', '~> 0.16'
|
|
10
|
+
gem 'rake', '~> 13.3'
|
|
11
|
+
gem 'rspec', '~> 3.13'
|
|
12
|
+
gem 'rubocop', '~> 1.85'
|
|
13
|
+
gem 'simplecov', '~> 0.22'
|
|
14
|
+
end
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -65,10 +65,13 @@ emoji.base
|
|
|
65
65
|
This library aims to support and is [tested against][github_actions] the following Ruby
|
|
66
66
|
implementations:
|
|
67
67
|
|
|
68
|
-
* Ruby 2.6.0
|
|
69
68
|
* Ruby 2.7.0
|
|
70
69
|
* Ruby 3.0.0
|
|
71
70
|
* Ruby 3.1.0
|
|
71
|
+
* Ruby 3.2.0
|
|
72
|
+
* Ruby 3.3.0
|
|
73
|
+
* Ruby 3.4.0
|
|
74
|
+
* Ruby 4.0.0
|
|
72
75
|
|
|
73
76
|
## License
|
|
74
77
|
|
data/emoji-datasource.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ 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.7.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'
|
|
@@ -31,10 +31,4 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.bindir = 'exe'
|
|
32
32
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
|
-
|
|
35
|
-
spec.add_development_dependency 'pry', '~> 0.14'
|
|
36
|
-
spec.add_development_dependency 'rake', '~> 13.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'
|
|
40
34
|
end
|
data/package.json
CHANGED