unicode-emoji 2.3.0 → 2.7.0

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: 788c88b436ec7e999463d69d280aa78c1d57d80f16a307809284eed76fc1b683
4
- data.tar.gz: 76cb02301ca2048677b26cafdcbb711d785e1355119843a694faa9fc593e742c
3
+ metadata.gz: 3eb8b92cd1437ec73046172478a3d6d54fc82a14d387539cd80f7aee66c2806f
4
+ data.tar.gz: 1f788873a1ae840a8cb7507ab1d745e560f91b117c00044e5c95fe20d8e16382
5
5
  SHA512:
6
- metadata.gz: fd79cb4b8dea53571487e35e1586921dad7814dfeb6ce50b6e891fec05cd13c6ec9d9f4655c67981a6031f8d40e19d228d899218cb9696222445e81d6c874c04
7
- data.tar.gz: 984c6f4dc63250ecdf2c27a13042c0caf532d91efe135b3eaa8bf321019c0387210eef68c866116cb8f785198e0b2c128da17c19bc2ae4ea422e42374b73e0a5
6
+ metadata.gz: 6cae2a278812aed00b209ebc84859bec5ff4536a2e1ac862cc1a3c5155c6f57f4a0ff43ed996b03e38cfca7fb202c39f93230ab3c6946cb052317d812428fe0e
7
+ data.tar.gz: a50d756ccc3c57fcd4aae79ff6ade68db29119e384ffd96ec32131db25026bc919ba2a076e3eccff20c37ba674cb5f18a5cb5d5a2450628b755a70a67fa0aa06
@@ -2,16 +2,18 @@ sudo: false
2
2
  language: ruby
3
3
 
4
4
  rvm:
5
- - 2.6.1
6
- - 2.5.3
7
- - 2.4.5
8
- - 2.3.8
5
+ - 2.7
6
+ - 2.6
7
+ - 2.5
8
+ - 2.4
9
+ - 2.3
9
10
  - ruby-head
10
- - jruby-head
11
- - jruby-9.2.6.0
11
+ - jruby-9.2.11.1
12
+ - truffleruby-20.2.0
12
13
 
13
14
  matrix:
14
15
  allow_failures:
15
- - rvm: jruby-head
16
+ - rvm: 2.4
17
+ - rvm: 2.3
16
18
  - rvm: ruby-head
17
19
  # fast_finish: true
@@ -1,5 +1,27 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 2.7.0
4
+
5
+ - Update valid subdivisions to CLDR 38
6
+ - Loosen Ruby dependency to allow Ruby 3.0
7
+
8
+ ### 2.6.0
9
+
10
+ - Emoji 13.1
11
+
12
+ ### 2.5.0
13
+
14
+ - Use native Emoji regex properties when current Ruby's Emoji support is the same as our current Emoji version
15
+ - Update valid subdivisions to CLDR 37
16
+
17
+ ### 2.4.0
18
+
19
+ - Emoji 13.0
20
+
21
+ ### 2.3.1
22
+
23
+ - Fix index to actually include Emoji 12.1
24
+
3
25
  ### 2.3.0
4
26
 
5
27
  - Emoji 12.1
data/Gemfile CHANGED
@@ -4,4 +4,4 @@ gemspec
4
4
 
5
5
  gem "minitest"
6
6
  gem "rake"
7
- gem "irb"
7
+ gem "irb" unless RUBY_ENGINE == "jruby"
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2019 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017-2020 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,14 +1,16 @@
1
1
  # Unicode::Emoji [![[version]](https://badge.fury.io/rb/unicode-emoji.svg)](https://badge.fury.io/rb/unicode-emoji) [![[travis]](https://travis-ci.org/janlelis/unicode-emoji.svg)](https://travis-ci.org/janlelis/unicode-emoji)
2
2
 
3
- A small Ruby library which provides Unicode Emoji data and regexes.
3
+ Provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards.
4
4
 
5
5
  Also includes a categorized list of recommended Emoji.
6
6
 
7
- Emoji version: **12.1** (October 2019)
7
+ Emoji version: **13.1** (September 2020)
8
8
 
9
- CLDR version (used for sub-region flags): **36** (October 2019)
9
+ CLDR version (used for sub-region flags): **38** (October 2020)
10
10
 
11
- Supported Rubies: **2.6**, **2.5**, **2.4**, **2.3**
11
+ Supported Rubies: **2.7**, **2.6**, **2.5** (also latest JRuby and TruffleRuby stable)
12
+
13
+ No longer supported Rubies, but might still work: **2.4**, **2.3**
12
14
 
13
15
  If you are stuck on an older Ruby version, checkout the latest [0.9 version](https://rubygems.org/gems/unicode-emoji/versions/0.9.3) of this gem.
14
16
 
@@ -129,7 +131,7 @@ A list of all Emoji can be found at [character.construction](https://character.c
129
131
 
130
132
  ### Properties
131
133
 
132
- Allows you to access the codepoint data form Unicode's [emoji-data.txt](https://unicode.org/Public/emoji/12.1/emoji-data.txt) file:
134
+ Allows you to access the codepoint data form Unicode's [emoji-data.txt](https://www.unicode.org/Public/13.0.0/ucd/emoji/emoji-data.txt) file:
133
135
 
134
136
  ```ruby
135
137
  require "unicode/emoji"
@@ -146,5 +148,5 @@ Unicode::Emoji.properties "☝" # => ["Emoji", "Emoji_Modifier_Base"]
146
148
 
147
149
  ## MIT
148
150
 
149
- - Copyright (C) 2017-2019 Jan Lelis <https://janlelis.com>. Released under the MIT license.
151
+ - Copyright (C) 2017-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
150
152
  - Unicode data: https://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "unicode/version"
4
+
3
5
  require_relative "emoji/constants"
4
6
  require_relative "emoji/index"
5
7
 
@@ -47,7 +49,7 @@ module Unicode
47
49
  join = -> (*strings){ "(?:" + strings.join("|") + ")" }
48
50
  pack_and_join = ->(ords){ join[*ords.map{ |ord| pack[ord] }] }
49
51
 
50
- if ENABLE_NATIVE_EMOJI_UNICODE_PROPERTIES
52
+ if EMOJI_VERSION == Unicode::Version.emoji_version
51
53
  emoji_character = "\\p{Emoji}"
52
54
  emoji_modifier = "\\p{Emoji Modifier}"
53
55
  emoji_modifier_base = "\\p{Emoji Modifier Base}"
@@ -2,13 +2,11 @@
2
2
 
3
3
  module Unicode
4
4
  module Emoji
5
- VERSION = "2.3.0"
6
- EMOJI_VERSION = "12.1"
7
- CLDR_VERSION = "36"
5
+ VERSION = "2.7.0"
6
+ EMOJI_VERSION = "13.1"
7
+ CLDR_VERSION = "38"
8
8
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
9
9
  INDEX_FILENAME = (DATA_DIRECTORY + "/emoji.marshal.gz").freeze
10
-
11
- ENABLE_NATIVE_EMOJI_UNICODE_PROPERTIES = false # As of Ruby 2.6.1, Emoji version 11 is included
12
10
  end
13
11
  end
14
12
 
@@ -88,6 +88,21 @@ describe Unicode::Emoji do
88
88
  "🤠‍🤢 vomiting cowboy" =~ Unicode::Emoji::REGEX
89
89
  assert_equal "🤠", $&
90
90
  end
91
+
92
+ it "matches 12.1 emoji" do
93
+ "🧑‍🦱 person: curly hair" =~ Unicode::Emoji::REGEX
94
+ assert_equal "🧑‍🦱", $&
95
+ end
96
+
97
+ it "matches 13.0 emoji" do
98
+ "👨‍🍼 man feeding baby" =~ Unicode::Emoji::REGEX
99
+ assert_equal "👨‍🍼", $&
100
+ end
101
+
102
+ it "matches 13.1 emoji" do
103
+ "❤️‍🔥 heart on fire" =~ Unicode::Emoji::REGEX
104
+ assert_equal "❤️‍🔥", $&
105
+ end
91
106
  end
92
107
 
93
108
  describe "REGEX_VALID" do
@@ -6,9 +6,9 @@ Gem::Specification.new do |gem|
6
6
  gem.name = "unicode-emoji"
7
7
  gem.version = Unicode::Emoji::VERSION
8
8
  gem.summary = "Retrieve Emoji data about Unicode codepoints."
9
- gem.description = "[Emoji #{Unicode::Emoji::EMOJI_VERSION}] Retrieve emoji data about Unicode codepoints. Also contains a regex to match emoji."
9
+ gem.description = "[Emoji #{Unicode::Emoji::EMOJI_VERSION}] A small Ruby library which provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized list of recommended Emoji."
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/unicode-emoji"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,5 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.3"
20
+ gem.required_ruby_version = ">= 2.3", "< 4.0"
21
+
22
+ gem.add_dependency "unicode-version", "~> 1.0"
21
23
  end
metadata CHANGED
@@ -1,19 +1,34 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-emoji
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-22 00:00:00.000000000 Z
12
- dependencies: []
13
- description: "[Emoji 12.1] Retrieve emoji data about Unicode codepoints. Also contains
14
- a regex to match emoji."
11
+ date: 2020-10-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: unicode-version
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ description: "[Emoji 13.1] A small Ruby library which provides Unicode Emoji data
28
+ and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized
29
+ list of recommended Emoji."
15
30
  email:
16
- - mail@janlelis.de
31
+ - hi@ruby.consulting
17
32
  executables: []
18
33
  extensions: []
19
34
  extra_rdoc_files: []
@@ -43,16 +58,19 @@ require_paths:
43
58
  - lib
44
59
  required_ruby_version: !ruby/object:Gem::Requirement
45
60
  requirements:
46
- - - "~>"
61
+ - - ">="
47
62
  - !ruby/object:Gem::Version
48
63
  version: '2.3'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: '4.0'
49
67
  required_rubygems_version: !ruby/object:Gem::Requirement
50
68
  requirements:
51
69
  - - ">="
52
70
  - !ruby/object:Gem::Version
53
71
  version: '0'
54
72
  requirements: []
55
- rubygems_version: 3.0.6
73
+ rubygems_version: 3.1.2
56
74
  signing_key:
57
75
  specification_version: 4
58
76
  summary: Retrieve Emoji data about Unicode codepoints.