tanuki_emoji 0.2.1 → 0.2.2

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: 9bfc8f6877b2a8415e9f2fce9cd9eadc83260e115088bba91a8c8667ef20c389
4
- data.tar.gz: 44c9a6ac910cc10d1721dff60d9425444a344ebe7888a2097d42b8be179f21d8
3
+ metadata.gz: 645689214f62f8cecd946ba6976840c6c590d4c005ba0e7453bfff581a92a8c6
4
+ data.tar.gz: 6a513c16e4a198a2c6b583421f84fd63b2be942fc6f3c4504f57a331a0e2c098
5
5
  SHA512:
6
- metadata.gz: eacba12a4d667df1cc4b31d58a664cef646dbca5d7910bd8b9cb19e66335d0ab542fbf371d059fbcae3a10d8bc7b55ef088213a9d0b61b95338c3678568be173
7
- data.tar.gz: 39f41206beefc09587871f7ea534bd04b086a2258addd4f59c98468a64eef4a79204400f56d211526356bed6ff023cef6c6fb99245e06b690e7b41023c729648
6
+ metadata.gz: 79b2910f7c1cdf7526fac4daf312577b88b2c00c2c8915ba29f5f83946271378bcfc0223938a501088a58072009dd881079f8ff5bd2a5aecc6b5c9162e49b108
7
+ data.tar.gz: 5d1dc520b29a272f279465afd4fcdc48669a59bfd6edc98250a1592ba377dc7f90e1ba9ba27b3fa451613e6b1a8fb0a6d7c2c43edf9f09b84ac172a421050a85
@@ -0,0 +1,2 @@
1
+ [Maintainers]
2
+ * @brodock @cablett @mwoolf @kerrizor @brytannia @splattael @digitalmoksha @smcgivern @jlear
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.2] - 2021-08-32
10
+ ### Modified
11
+ - Fixed autoload load_path
12
+
9
13
  ## [0.2.1] - 2021-07-09
10
14
  ### Modified
11
15
  - Noto Emoji assets were not included due to bug in gemspec code. Now it is.
@@ -20,6 +24,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
24
  ### Added
21
25
  - Initial release with index and Character information support
22
26
 
23
- [0.1.0]:https://gitlab.com/brodock/tanuki_emoji/-/releases/v0.1.0
24
- [0.2.0]:https://gitlab.com/brodock/tanuki_emoji/-/releases/v0.2.0
25
- [0.2.1]:https://gitlab.com/brodock/tanuki_emoji/-/releases/v0.2.1
27
+ [0.1.0]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.1.0
28
+ [0.2.0]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.2.0
29
+ [0.2.1]:https://gitlab.com/gitlab-org/tanuki_emoji/-/releases/v0.2.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tanuki_emoji (0.2.1)
4
+ tanuki_emoji (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TanukiEmoji
4
4
  module Db
5
- autoload :Gemojione, './lib/tanuki_emoji/db/gemojione'
5
+ autoload :Gemojione, 'tanuki_emoji/db/gemojione'
6
6
  end
7
7
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TanukiEmoji
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
data/lib/tanuki_emoji.rb CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  # Tanuki Emoji
4
4
  module TanukiEmoji
5
- autoload :VERSION, './lib/tanuki_emoji/version'
6
- autoload :Error, './lib/tanuki_emoji/errors'
7
- autoload :AlphaCodeAlreadyIndexedError, './lib/tanuki_emoji/errors'
8
- autoload :CodepointAlreadyIndexedError, './lib/tanuki_emoji/errors'
9
- autoload :Index, './lib/tanuki_emoji/index'
10
- autoload :Character, './lib/tanuki_emoji/character'
11
- autoload :Db, './lib/tanuki_emoji/db'
5
+ autoload :VERSION, 'tanuki_emoji/version'
6
+ autoload :Error, 'tanuki_emoji/errors'
7
+ autoload :AlphaCodeAlreadyIndexedError, 'tanuki_emoji/errors'
8
+ autoload :CodepointAlreadyIndexedError, 'tanuki_emoji/errors'
9
+ autoload :Index, 'tanuki_emoji/index'
10
+ autoload :Character, 'tanuki_emoji/character'
11
+ autoload :Db, 'tanuki_emoji/db'
12
12
 
13
13
  # Find an Emoji by its :alpha_code:
14
14
  #
data/tanuki_emoji.gemspec CHANGED
@@ -10,13 +10,13 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = %q{Tanuki Emoji}
12
12
  spec.description = %q{Tanuki Emoji provides Emoji character information and metadata with support for Noto Emoji resources as fallback}
13
- spec.homepage = 'https://gitlab.com/brodock/tanuki_emoji'
13
+ spec.homepage = 'https://gitlab.com/gitlab-org/tanuki_emoji'
14
14
  spec.licenses = %w[MIT Apache2]
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
- spec.metadata['source_code_uri'] = 'https://gitlab.com/brodock/tanuki_emoji'
19
- spec.metadata['changelog_uri'] = 'https://gitlab.com/brodock/tanuki_emoji/-/blob/main/CHANGELOG.md'
18
+ spec.metadata['source_code_uri'] = 'https://gitlab.com/gitlab-org/tanuki_emoji'
19
+ spec.metadata['changelog_uri'] = 'https://gitlab.com/gitlab-org/tanuki_emoji/-/blob/main/CHANGELOG.md'
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tanuki_emoji
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Mazetto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-09 00:00:00.000000000 Z
11
+ date: 2021-08-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Tanuki Emoji provides Emoji character information and metadata with support
14
14
  for Noto Emoji resources as fallback
@@ -20,6 +20,7 @@ extra_rdoc_files: []
20
20
  files:
21
21
  - ".gitignore"
22
22
  - ".gitlab-ci.yml"
23
+ - ".gitlab/CODEOWNERS"
23
24
  - ".gitmodules"
24
25
  - ".rspec"
25
26
  - ".rubocop.yml"
@@ -1847,14 +1848,14 @@ files:
1847
1848
  - vendor/unicode/emoji-test.txt
1848
1849
  - vendor/unicode/emoji-variation-sequences.txt
1849
1850
  - vendor/unicode/emoji-zwj-sequences.txt
1850
- homepage: https://gitlab.com/brodock/tanuki_emoji
1851
+ homepage: https://gitlab.com/gitlab-org/tanuki_emoji
1851
1852
  licenses:
1852
1853
  - MIT
1853
1854
  - Apache2
1854
1855
  metadata:
1855
- homepage_uri: https://gitlab.com/brodock/tanuki_emoji
1856
- source_code_uri: https://gitlab.com/brodock/tanuki_emoji
1857
- changelog_uri: https://gitlab.com/brodock/tanuki_emoji/-/blob/main/CHANGELOG.md
1856
+ homepage_uri: https://gitlab.com/gitlab-org/tanuki_emoji
1857
+ source_code_uri: https://gitlab.com/gitlab-org/tanuki_emoji
1858
+ changelog_uri: https://gitlab.com/gitlab-org/tanuki_emoji/-/blob/main/CHANGELOG.md
1858
1859
  post_install_message:
1859
1860
  rdoc_options: []
1860
1861
  require_paths: