emoji-data 0.1.0 → 1.0.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
  SHA1:
3
- metadata.gz: 821b2d27cfa1d6ea300d972af8f591b31ee55746
4
- data.tar.gz: 9a1d2d89acbd06293424cfe444fa4363bd2903f5
3
+ metadata.gz: b058fa96736a6e1a46e5f95695fe942e218f188e
4
+ data.tar.gz: 785e9e6fcea395c1ee98aeab5472ebce60aa5723
5
5
  SHA512:
6
- metadata.gz: c6deda09eae81ae85c2bbb2ef49384611c37696a4e9c6ebb4ce6e94d37f077f4ea0260517c99977ecb125a7ccba86732f0e01a5f6fae600f5ae657e99f431618
7
- data.tar.gz: 1f01f5758c74274d88e9fea766bbc70f8a56f2366dbe5c855a1d17e289a5ff2dc3cd2388567ab3c55a3f1756e537a371660c90b9ec22d3c4d670120ae7aa401a
6
+ metadata.gz: 5b2977a165fd994058ad147815776de4d32a7e993c83134ef2222a9dcbd7ecdcab008290b068d3dfc4f3669d4d15efa2560401f5832767534ffe0859626d5b65
7
+ data.tar.gz: fab55f7a9d7e5dd0bceb038d3f29874b34d2c82d195404eaeb3a233be7b28ed3ffa5e5c3fb64764e0efc0519c5d4252145d9e150b50186105cf72f3e839dbb53
data/README.md CHANGED
@@ -22,6 +22,6 @@ From [www.unicode.org/Public/emoji/2.0/emoji-zwj-sequences.txt](http://www.unico
22
22
 
23
23
  All of above merged into one json.
24
24
 
25
- ## License
25
+ ## The UNLICENSE
26
26
 
27
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
27
+ See [UNLICENSE](/UNLICENSE).
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org>
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Emoji JSON Data for UTR #51}
13
13
  spec.description = spec.summary
14
14
  spec.homepage = "https://github.com/jollygoodcode/emoji-data"
15
- spec.license = "MIT"
15
+ spec.license = "UNLICENSE"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
18
  spec.bindir = "exe"
@@ -1,5 +1,5 @@
1
1
  module Emoji
2
2
  module Data
3
- VERSION = "0.1.0".freeze
3
+ VERSION = "1.0.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emoji-data
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JuanitoFatas
@@ -21,9 +21,9 @@ files:
21
21
  - ".rspec"
22
22
  - ".travis.yml"
23
23
  - Gemfile
24
- - LICENSE.txt
25
24
  - README.md
26
25
  - Rakefile
26
+ - UNLICENSE
27
27
  - bin/console
28
28
  - bin/setup
29
29
  - emoji-data.gemspec
@@ -43,7 +43,7 @@ files:
43
43
  - output/emoji-zwj-sequences.json
44
44
  homepage: https://github.com/jollygoodcode/emoji-data
45
45
  licenses:
46
- - MIT
46
+ - UNLICENSE
47
47
  metadata: {}
48
48
  post_install_message:
49
49
  rdoc_options: []
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016 JuanitoFatas
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.