jekyll-openmoji 0.0.6 → 0.1.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/.gitlab-ci.yml +78 -14
- data/CONTRIBUTING.md +1 -1
- data/README.md +3 -3
- data/jekyll-openmoji.gemspec +5 -5
- data/lib/jekyll-openmoji/version.rb +1 -1
- data/logo.svg +403 -0
- metadata +12 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: feafae4d43f234f09fd53145cecb85e01576094cf93bb3c8e4f634b4de847811
|
|
4
|
+
data.tar.gz: 41a679eece1e28437f9648577a03dd6d76821832c79985b1588fad0748ecba15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25bb9d69606825430382082770b89ce397708dbd62fe7f3ea31a80bc9e2f563881f7d7b2cf2d88b0dc662e71db40f94350af892519732dc59f6effd43fa2ac7f
|
|
7
|
+
data.tar.gz: a42f69fbbf331761f7dbd8929c8b502500780c2f2cb37999570d0f17b9ca710786ade103b8c982b1ff1a955feb28ac4869f3c98d3ecac57b3420ebfa8583144f
|
data/.gitlab-ci.yml
CHANGED
|
@@ -1,26 +1,30 @@
|
|
|
1
|
+
# stages of gitlab ci.
|
|
1
2
|
stages:
|
|
2
3
|
- test
|
|
3
4
|
- release
|
|
4
5
|
|
|
5
6
|
# default settings for all ci jobs.
|
|
6
7
|
default:
|
|
7
|
-
image: ruby:latest
|
|
8
|
+
image: azadehafzarhub/gitlab-ci-ruby-build:latest
|
|
8
9
|
cache:
|
|
9
10
|
paths:
|
|
10
11
|
- vendor/
|
|
11
12
|
|
|
12
|
-
# job for testing package
|
|
13
|
-
# and send test coverage result to
|
|
14
|
-
|
|
13
|
+
# job for testing package against ruby version 2.6
|
|
14
|
+
# on master branch and send test coverage result to
|
|
15
|
+
# codeclimate.
|
|
16
|
+
test main branch:
|
|
15
17
|
stage: test
|
|
16
18
|
before_script:
|
|
19
|
+
# setup rvm.
|
|
20
|
+
- source ~/.bash_profile
|
|
21
|
+
# use ruby version 2.6.
|
|
22
|
+
- rvm use 2.6
|
|
17
23
|
# upgrade bundler to latest version.
|
|
18
24
|
- gem install bundler
|
|
19
25
|
# install dependency gems.
|
|
20
26
|
- bundle install --path vendor
|
|
21
|
-
#
|
|
22
|
-
- script/ci_setup.sh
|
|
23
|
-
# run code climate test reporter agent.
|
|
27
|
+
# run codeclimate test reporter agent.
|
|
24
28
|
- cc-test-reporter before-build
|
|
25
29
|
# run tests.
|
|
26
30
|
script:
|
|
@@ -31,25 +35,85 @@ test_master:
|
|
|
31
35
|
only:
|
|
32
36
|
- master
|
|
33
37
|
|
|
34
|
-
# job for testing package on other branches
|
|
35
|
-
# and merge requests.
|
|
36
|
-
|
|
38
|
+
# job for testing package on other branches than master
|
|
39
|
+
# and merge requests against 2.6 version.
|
|
40
|
+
test ruby 2.6:
|
|
37
41
|
stage: test
|
|
42
|
+
before_script:
|
|
43
|
+
# setup rvm.
|
|
44
|
+
- source ~/.bash_profile
|
|
45
|
+
# use ruby version 2.6.
|
|
46
|
+
- rvm use 2.6
|
|
47
|
+
# upgrade bundler to latest version.
|
|
48
|
+
- gem install bundler
|
|
49
|
+
# install dependency gems.
|
|
50
|
+
- bundle install --path vendor
|
|
38
51
|
# run tests.
|
|
39
52
|
script:
|
|
40
53
|
- script/test.sh
|
|
41
|
-
# run on branches and merge requests.
|
|
42
54
|
only:
|
|
43
55
|
- branches
|
|
44
56
|
- merge_requests
|
|
45
|
-
# don't run on master branch.
|
|
46
57
|
except:
|
|
47
58
|
- master
|
|
48
59
|
|
|
60
|
+
test ruby 2.5:
|
|
61
|
+
stage: test
|
|
62
|
+
before_script:
|
|
63
|
+
# setup rvm.
|
|
64
|
+
- source ~/.bash_profile
|
|
65
|
+
# use ruby version 2.5.
|
|
66
|
+
- rvm use 2.5
|
|
67
|
+
# upgrade bundler to latest version.
|
|
68
|
+
- gem install bundler
|
|
69
|
+
# install dependency gems.
|
|
70
|
+
- bundle install --path vendor
|
|
71
|
+
# run tests.
|
|
72
|
+
script:
|
|
73
|
+
- script/test.sh
|
|
74
|
+
except:
|
|
75
|
+
- tags
|
|
76
|
+
|
|
77
|
+
test ruby 2.4:
|
|
78
|
+
stage: test
|
|
79
|
+
before_script:
|
|
80
|
+
# setup rvm.
|
|
81
|
+
- source ~/.bash_profile
|
|
82
|
+
# use ruby version 2.4.
|
|
83
|
+
- rvm use 2.4
|
|
84
|
+
# upgrade bundler to latest version.
|
|
85
|
+
- gem install bundler
|
|
86
|
+
# install dependency gems.
|
|
87
|
+
- bundle install --path vendor
|
|
88
|
+
# run tests.
|
|
89
|
+
script:
|
|
90
|
+
- script/test.sh
|
|
91
|
+
|
|
92
|
+
test ruby 2.3:
|
|
93
|
+
stage: test
|
|
94
|
+
before_script:
|
|
95
|
+
# setup rvm.
|
|
96
|
+
- source ~/.bash_profile
|
|
97
|
+
# use ruby version 2.3.
|
|
98
|
+
- rvm use 2.3
|
|
99
|
+
# upgrade bundler to latest version.
|
|
100
|
+
- gem install bundler
|
|
101
|
+
# install dependency gems.
|
|
102
|
+
- bundle install --path vendor
|
|
103
|
+
# run tests.
|
|
104
|
+
script:
|
|
105
|
+
- script/test.sh
|
|
106
|
+
except:
|
|
107
|
+
- tags
|
|
108
|
+
|
|
49
109
|
# deploy gems to rubygems.org whenever a tag is released.
|
|
50
|
-
|
|
110
|
+
release to rubygems:
|
|
51
111
|
stage: release
|
|
52
112
|
script:
|
|
113
|
+
# setup rvm.
|
|
114
|
+
- source ~/.bash_profile
|
|
115
|
+
# use ruby version 2.6.
|
|
116
|
+
- rvm use 2.6
|
|
53
117
|
# create rubygems credential file for auto login.
|
|
54
118
|
- script/ci_rubygems.sh
|
|
55
119
|
# extract tag from git log and strip "v".
|
|
@@ -61,4 +125,4 @@ release_rubygems:
|
|
|
61
125
|
# only run for new tags.
|
|
62
126
|
only:
|
|
63
127
|
- tags
|
|
64
|
-
when: manual
|
|
128
|
+
when: manual
|
data/CONTRIBUTING.md
CHANGED
|
@@ -101,7 +101,7 @@ have [our own writeup][good merge request]
|
|
|
101
101
|
of this advice. (adapted from mypy guidelines)
|
|
102
102
|
|
|
103
103
|
See also our [coding conventions][code conventions] -- which consist mainly of a
|
|
104
|
-
reference to [
|
|
104
|
+
reference to [Ruby Style Guide][ruby style] -- for the code you
|
|
105
105
|
put in the merge request.
|
|
106
106
|
|
|
107
107
|
Also, do not squash your commits after you have submitted a merge request, as this
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<br>
|
|
3
3
|
<a href="#">
|
|
4
|
-
<img src="
|
|
4
|
+
<img src="logo.svg" width="100" alt="OpenMoji Jekyll Plugin"/>
|
|
5
5
|
</a>
|
|
6
6
|
</p>
|
|
7
7
|
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
><a href="https://gitlab.com/Azadeh-Afzar/Web-Development/OpenMoji-Jekyll-Plugin">GitLab</a>, all developments and
|
|
72
72
|
>discussions, issue tracking and merge requests take place in GitLab.
|
|
73
73
|
|
|
74
|
-
> This project is a fork of <a href="https://github.com/jekyll/
|
|
74
|
+
> This project is a fork of <a href="https://github.com/jekyll/jemoji">Jemoji</a>.
|
|
75
75
|
> This project is currently independent from main OpenMoji project.
|
|
76
76
|
|
|
77
77
|
### Enjoy a free open source emoji package
|
|
@@ -169,7 +169,7 @@ working on.
|
|
|
169
169
|
|
|
170
170
|
## License
|
|
171
171
|
|
|
172
|
-
Licensed under the [
|
|
172
|
+
Licensed under the [GPLv3](LICENSE).
|
|
173
173
|
|
|
174
174
|
## Attribution
|
|
175
175
|
1. All default emojis designed by [OpenMoji](https://openmoji.org) - the open source
|
data/jekyll-openmoji.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.description = "OpenMoji emoji pack plugin for Jekyll with powerful
|
|
15
15
|
configuration options and support for various emoji image file
|
|
16
16
|
sources and extensions. in addition to OpenMoji emojis, you can
|
|
17
|
-
also configure it to use any emoji
|
|
17
|
+
also configure it to use any available emoji sources."
|
|
18
18
|
spec.summary = "OpenMoji emoji plugin for Jekyll"
|
|
19
19
|
spec.licenses = "GPL-3.0"
|
|
20
20
|
|
|
@@ -28,13 +28,13 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.required_ruby_version = ">= 2.3.0"
|
|
29
29
|
|
|
30
30
|
spec.add_dependency "html-pipeline", "~> 2.2"
|
|
31
|
-
spec.add_dependency "html-pipeline-negarmoji", "~> 0.0
|
|
31
|
+
spec.add_dependency "html-pipeline-negarmoji", "~> 0.1.0"
|
|
32
32
|
spec.add_dependency "jekyll", ">= 3.0", "< 5.0"
|
|
33
|
-
spec.add_dependency "negarmoji", "~> 0.1.
|
|
33
|
+
spec.add_dependency "negarmoji", "~> 0.1.3"
|
|
34
34
|
|
|
35
35
|
spec.add_development_dependency "bundler", "~> 2.0"
|
|
36
|
-
spec.add_development_dependency "rake", "~>
|
|
36
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
37
37
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
38
|
-
spec.add_development_dependency "rubocop-jekyll", "~> 0.
|
|
38
|
+
spec.add_development_dependency "rubocop-jekyll", "~> 0.10"
|
|
39
39
|
spec.add_development_dependency "simplecov", "~> 0.17.0"
|
|
40
40
|
end
|
data/logo.svg
ADDED
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="38.65889mm"
|
|
13
|
+
height="38.394955mm"
|
|
14
|
+
viewBox="0 0 38.658889 38.394954"
|
|
15
|
+
version="1.1"
|
|
16
|
+
id="svg8"
|
|
17
|
+
inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
|
|
18
|
+
sodipodi:docname="OpenMoji Jekyll Plugin Logo.svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs2">
|
|
21
|
+
<clipPath
|
|
22
|
+
clipPathUnits="userSpaceOnUse"
|
|
23
|
+
id="clipPath78">
|
|
24
|
+
<path
|
|
25
|
+
d="M 0,42.933 H 455.557 V 0 H 0 Z"
|
|
26
|
+
id="path76"
|
|
27
|
+
inkscape:connector-curvature="0" />
|
|
28
|
+
</clipPath>
|
|
29
|
+
<polygon
|
|
30
|
+
id="SVGID_1_"
|
|
31
|
+
points="1,1 2,1 1,2 " />
|
|
32
|
+
<polygon
|
|
33
|
+
id="SVGID_2_"
|
|
34
|
+
points="-1,-1 -2,-1 -1,-2 " />
|
|
35
|
+
<clipPath
|
|
36
|
+
id="clipPath78-3"
|
|
37
|
+
clipPathUnits="userSpaceOnUse">
|
|
38
|
+
<path
|
|
39
|
+
inkscape:connector-curvature="0"
|
|
40
|
+
id="path76-74"
|
|
41
|
+
d="M 0,42.933 H 455.557 V 0 H 0 Z" />
|
|
42
|
+
</clipPath>
|
|
43
|
+
<clipPath
|
|
44
|
+
id="clipPath78-4"
|
|
45
|
+
clipPathUnits="userSpaceOnUse">
|
|
46
|
+
<path
|
|
47
|
+
inkscape:connector-curvature="0"
|
|
48
|
+
id="path76-7"
|
|
49
|
+
d="M 0,42.933 H 455.557 V 0 H 0 Z" />
|
|
50
|
+
</clipPath>
|
|
51
|
+
<polygon
|
|
52
|
+
id="polygon288"
|
|
53
|
+
points="2,1 1,2 1,1 " />
|
|
54
|
+
<polygon
|
|
55
|
+
id="polygon291"
|
|
56
|
+
points="-2,-1 -1,-2 -1,-1 " />
|
|
57
|
+
</defs>
|
|
58
|
+
<sodipodi:namedview
|
|
59
|
+
id="base"
|
|
60
|
+
pagecolor="#ffffff"
|
|
61
|
+
bordercolor="#666666"
|
|
62
|
+
borderopacity="1.0"
|
|
63
|
+
inkscape:pageopacity="0.0"
|
|
64
|
+
inkscape:pageshadow="2"
|
|
65
|
+
inkscape:zoom="1.42"
|
|
66
|
+
inkscape:cx="71.015999"
|
|
67
|
+
inkscape:cy="100.31597"
|
|
68
|
+
inkscape:document-units="mm"
|
|
69
|
+
inkscape:current-layer="layer1"
|
|
70
|
+
showgrid="false"
|
|
71
|
+
inkscape:window-width="1600"
|
|
72
|
+
inkscape:window-height="846"
|
|
73
|
+
inkscape:window-x="0"
|
|
74
|
+
inkscape:window-y="28"
|
|
75
|
+
inkscape:window-maximized="1" />
|
|
76
|
+
<metadata
|
|
77
|
+
id="metadata5">
|
|
78
|
+
<rdf:RDF>
|
|
79
|
+
<cc:Work
|
|
80
|
+
rdf:about="">
|
|
81
|
+
<dc:format>image/svg+xml</dc:format>
|
|
82
|
+
<dc:type
|
|
83
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
84
|
+
<dc:title></dc:title>
|
|
85
|
+
</cc:Work>
|
|
86
|
+
</rdf:RDF>
|
|
87
|
+
</metadata>
|
|
88
|
+
<g
|
|
89
|
+
inkscape:label="Layer 1"
|
|
90
|
+
inkscape:groupmode="layer"
|
|
91
|
+
id="layer1"
|
|
92
|
+
transform="translate(-88.843422,-98.444087)">
|
|
93
|
+
<g
|
|
94
|
+
id="g305"
|
|
95
|
+
transform="matrix(0.51809815,0,0,0.51809815,89.883867,90.852429)">
|
|
96
|
+
<g
|
|
97
|
+
id="color">
|
|
98
|
+
<path
|
|
99
|
+
id="path240"
|
|
100
|
+
d="m 33.6,29.0397 c -0.28,-2.33 -1.42,-9.24 -1.42,-9.24 -0.29,-2.37 -3.84,-4.66 -6.16,-4.03 0,0 -6.15,1.97 -7.9,2.44 -1.76,0.47 -8.08,1.84 -8.08,1.84 -2.31,0.62 -4.25,4.37 -3.31,6.57 0,0 2.47,6.55 3.39,8.71 0.69,1.63 3.13,4.58 4.05,6.18 1.95,3.4 6.01,7.46 9.8,6.45 l 3.95,-1.06 c 3.79,-1.02 5.28,-6.56 5.26,-10.48 0,-1.8499 0.63,-5.62 0.42,-7.38 z m -17.34,2.3501 c -1.07,0.28 -2.11,-0.13 -2.32,-0.93 -0.22,-0.8 0.47,-1.68 1.54,-1.97 1.07,-0.29 2.11,0.13 2.32,0.93 0.22,0.8 -0.48,1.68 -1.54,1.97 z m 9.85,-2.64 c -1.06,0.28 -2.1,-0.13 -2.32,-0.93 -0.21,-0.8 0.48,-1.69 1.55,-1.97 1.06,-0.29 2.1,0.1299 2.3199,0.93 0.2101,0.8 -0.4799,1.68 -1.5499,1.97 z m -2.57,9.69 c -2.4,0.65 -3.24,5.31 -3.88,2.91 -0.65,-2.4 0.78,-4.8701 3.1801,-5.51 2.4,-0.65 4.87,0.78 5.5099,3.18 0.64,2.3999 -2.41,-1.2201 -4.81,-0.58 z"
|
|
101
|
+
inkscape:connector-curvature="0"
|
|
102
|
+
style="fill:#3f3f3f" />
|
|
103
|
+
|
|
104
|
+
<path
|
|
105
|
+
id="path242"
|
|
106
|
+
d="m 21.6693,23.4356 c 2.1356,-0.765 4.0226,-1.1808 5.0998,-0.9136 1.2528,0.3108 2.2244,1.0304 3.1249,2.106 z"
|
|
107
|
+
inkscape:connector-curvature="0"
|
|
108
|
+
style="fill:#3f3f3f" />
|
|
109
|
+
|
|
110
|
+
<path
|
|
111
|
+
id="path244"
|
|
112
|
+
d="m 17.4538,24.5652 c -2.232,0.4053 -4.0741,0.9887 -4.8733,1.7587 -0.9295,0.8956 -1.4112,2.0046 -1.6533,3.3863 z"
|
|
113
|
+
inkscape:connector-curvature="0"
|
|
114
|
+
style="fill:#3f3f3f" />
|
|
115
|
+
|
|
116
|
+
<path
|
|
117
|
+
id="path246"
|
|
118
|
+
d="m 61.96,28.0497 c 0,0 -6.32,-1.37 -8.07,-1.84 -1.76,-0.47 -7.91,-2.45 -7.91,-2.45 -2.32,-0.62 -5.87,1.67 -6.16,4.04 0,0 -1.14,6.91 -1.42,9.24 -0.21,1.76 0.42,5.53 0.42,7.38 -0.02,3.92 1.47,9.46 5.26,10.48 l 3.95,1.06 c 3.79,1.01 7.85,-3.05 9.8,-6.45 0.92,-1.6 3.36,-4.55 4.05,-6.18 0.92,-2.16 3.39,-8.71 3.39,-8.71 0.94,-2.2 -1,-5.95 -3.31,-6.57 z m -17.82,6.68 c 0.22,-0.8 1.26,-1.22 2.32,-0.93 1.07,0.28 1.7599,1.16 1.55,1.96 -0.22,0.8 -1.26,1.22 -2.32,0.93 -1.07,-0.2799 -1.76,-1.1599 -1.55,-1.96 z m 9.17,11.0201 c -0.65,2.4 -3.11,3.83 -5.51,3.18 -2.4,-0.64 -3.83,-3.11 -3.19,-5.51 0.65,-2.4 1.48,2.26 3.88,2.9 2.41,0.65 5.46,-2.97 4.82,-0.57 z m 4.55,-7.35 c -0.21,0.8 -1.25,1.22 -2.32,0.94 -1.06,-0.29 -1.7599,-1.17 -1.54,-1.97 0.21,-0.8 1.25,-1.22 2.32,-0.93 1.07,0.28 1.76,1.16 1.54,1.96 z"
|
|
119
|
+
inkscape:connector-curvature="0"
|
|
120
|
+
style="fill:#ffffff" />
|
|
121
|
+
|
|
122
|
+
</g>
|
|
123
|
+
<g
|
|
124
|
+
id="hair" />
|
|
125
|
+
<g
|
|
126
|
+
id="skin" />
|
|
127
|
+
<g
|
|
128
|
+
id="skin-shadow" />
|
|
129
|
+
<g
|
|
130
|
+
id="line">
|
|
131
|
+
<path
|
|
132
|
+
id="path252"
|
|
133
|
+
d="m 27.9197,46.898 -3.9508,1.0585 C 20.1834,48.9709 16.1169,44.9132 14.171,41.5114 13.2533,39.9072 10.8138,36.9598 10.1174,35.3293 9.1961,33.1726 6.7343,26.6218 6.7343,26.6218 5.793,24.4182 7.7288,20.6671 10.0434,20.0469 c 0,0 6.3153,-1.3686 8.0716,-1.8392 1.7562,-0.4705 7.9098,-2.4429 7.9098,-2.4429 2.3145,-0.6202 5.8665,1.6604 6.1531,4.0394 0,0 1.1435,6.9053 1.4241,9.234 0.212,1.7598 -0.427,5.5314 -0.4197,7.3792 0.0157,3.9189 -1.4771,9.4662 -5.2626,10.4806 z"
|
|
134
|
+
stroke-miterlimit="10"
|
|
135
|
+
inkscape:connector-curvature="0"
|
|
136
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
137
|
+
|
|
138
|
+
<path
|
|
139
|
+
id="path254"
|
|
140
|
+
d="m 28.3499,39.0182 c 0.6432,2.4006 -2.412,-1.2173 -4.8126,-0.574 -2.4006,0.6432 -3.2375,5.3039 -3.8808,2.9033 -0.6432,-2.4006 0.7814,-4.8681 3.182,-5.5113 2.4006,-0.6433 4.8681,0.7813 5.5114,3.182 z"
|
|
141
|
+
stroke-miterlimit="10"
|
|
142
|
+
inkscape:connector-curvature="0"
|
|
143
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
144
|
+
|
|
145
|
+
<ellipse
|
|
146
|
+
id="ellipse256"
|
|
147
|
+
ry="1.5"
|
|
148
|
+
rx="1.9999"
|
|
149
|
+
cy="27.2976"
|
|
150
|
+
cx="25.725599"
|
|
151
|
+
stroke-miterlimit="10"
|
|
152
|
+
transform="matrix(0.9659,-0.2588,0.2588,0.9659,-6.1883,7.5881)"
|
|
153
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
154
|
+
|
|
155
|
+
<path
|
|
156
|
+
id="path258"
|
|
157
|
+
d="m 21.6693,23.4356 c 2.1356,-0.765 4.0226,-1.1808 5.0998,-0.9136 1.2528,0.3108 2.2244,1.0304 3.1249,2.106"
|
|
158
|
+
stroke-miterlimit="10"
|
|
159
|
+
inkscape:connector-curvature="0"
|
|
160
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
161
|
+
|
|
162
|
+
<ellipse
|
|
163
|
+
id="ellipse260"
|
|
164
|
+
ry="1.5"
|
|
165
|
+
rx="1.9999"
|
|
166
|
+
cy="29.937901"
|
|
167
|
+
cx="15.8699"
|
|
168
|
+
stroke-miterlimit="10"
|
|
169
|
+
transform="matrix(0.9659,-0.2588,0.2588,0.9659,-7.2074,5.1273)"
|
|
170
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
171
|
+
|
|
172
|
+
<path
|
|
173
|
+
id="path262"
|
|
174
|
+
d="m 17.4538,24.5652 c -2.232,0.4053 -4.0741,0.9887 -4.8733,1.7587 -0.9295,0.8956 -1.4112,2.0046 -1.6533,3.3863"
|
|
175
|
+
stroke-miterlimit="10"
|
|
176
|
+
inkscape:connector-curvature="0"
|
|
177
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
178
|
+
|
|
179
|
+
<path
|
|
180
|
+
id="path264"
|
|
181
|
+
d="m 48.031,55.9565 -3.9507,-1.0587 c -3.7855,-1.0143 -5.2784,-6.5616 -5.2627,-10.4806 0.0073,-1.8481 -0.6316,-5.6204 -0.4195,-7.3807 0.2805,-2.3284 1.4239,-9.2325 1.4239,-9.2325 0.2866,-2.379 3.8386,-4.6597 6.1532,-4.0395 0,0 6.1535,1.9724 7.9099,2.443 1.7561,0.4706 8.0715,1.8393 8.0715,1.8393 2.3145,0.6201 4.2503,4.3712 3.309,6.5748 0,0 -2.4623,6.5519 -3.3837,8.7089 -0.6963,1.63 -3.1355,4.5768 -4.0531,6.1807 -1.9459,3.402 -6.0123,7.4596 -9.7978,6.4453 z"
|
|
182
|
+
stroke-miterlimit="10"
|
|
183
|
+
inkscape:connector-curvature="0"
|
|
184
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
185
|
+
|
|
186
|
+
<ellipse
|
|
187
|
+
id="ellipse266"
|
|
188
|
+
ry="1.9999"
|
|
189
|
+
rx="1.5"
|
|
190
|
+
cy="37.8867"
|
|
191
|
+
cx="55.930401"
|
|
192
|
+
stroke-miterlimit="10"
|
|
193
|
+
transform="matrix(0.2588,-0.9659,0.9659,0.2588,4.8593,82.1061)"
|
|
194
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
195
|
+
|
|
196
|
+
<path
|
|
197
|
+
id="path268"
|
|
198
|
+
d="m 54.3491,32.5124 c 2.232,0.4053 4.0741,0.9887 4.8733,1.7587 0.9295,0.8956 1.4112,2.0046 1.6533,3.3863"
|
|
199
|
+
stroke-miterlimit="10"
|
|
200
|
+
inkscape:connector-curvature="0"
|
|
201
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
202
|
+
|
|
203
|
+
<ellipse
|
|
204
|
+
id="ellipse270"
|
|
205
|
+
ry="1.9999"
|
|
206
|
+
rx="1.5"
|
|
207
|
+
cy="35.244999"
|
|
208
|
+
cx="46.074001"
|
|
209
|
+
stroke-miterlimit="10"
|
|
210
|
+
transform="matrix(0.2588,-0.9659,0.9659,0.2588,0.1055,70.6275)"
|
|
211
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
212
|
+
|
|
213
|
+
<path
|
|
214
|
+
id="path272"
|
|
215
|
+
d="M 50.1336,31.3828 C 47.998,30.6178 46.111,30.202 45.0338,30.4692 43.781,30.78 42.8094,31.4996 41.9089,32.5752"
|
|
216
|
+
stroke-miterlimit="10"
|
|
217
|
+
inkscape:connector-curvature="0"
|
|
218
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
219
|
+
|
|
220
|
+
<path
|
|
221
|
+
id="path274"
|
|
222
|
+
d="m 44.6141,43.4203 c 0.6432,-2.4006 1.4802,2.2601 3.8808,2.9033 2.4006,0.6433 5.4558,-2.9746 4.8125,-0.574 -0.6432,2.4006 -3.1107,3.8253 -5.5113,3.182 -2.4006,-0.6432 -3.8252,-3.1107 -3.182,-5.5113 z"
|
|
223
|
+
stroke-miterlimit="10"
|
|
224
|
+
inkscape:connector-curvature="0"
|
|
225
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" />
|
|
226
|
+
|
|
227
|
+
</g>
|
|
228
|
+
</g>
|
|
229
|
+
<g
|
|
230
|
+
id="g959"
|
|
231
|
+
transform="matrix(1.5747682,0,0,1.5747682,30.443322,-0.88513243)">
|
|
232
|
+
<g
|
|
233
|
+
id="g12"
|
|
234
|
+
transform="matrix(0.35277777,0,0,-0.35277777,45.779258,79.563918)">
|
|
235
|
+
<path
|
|
236
|
+
d="M 0,0 H -4 V -7 H 0"
|
|
237
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
238
|
+
id="path14"
|
|
239
|
+
inkscape:connector-curvature="0" />
|
|
240
|
+
</g>
|
|
241
|
+
<g
|
|
242
|
+
id="g16"
|
|
243
|
+
transform="matrix(0.35277777,0,0,-0.35277777,44.368147,80.79864)">
|
|
244
|
+
<path
|
|
245
|
+
d="M 0,0 H 3"
|
|
246
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
247
|
+
id="path18"
|
|
248
|
+
inkscape:connector-curvature="0" />
|
|
249
|
+
</g>
|
|
250
|
+
</g>
|
|
251
|
+
<g
|
|
252
|
+
transform="matrix(0.55380277,0,0,-0.55380277,105.0754,128.28631)"
|
|
253
|
+
id="g48">
|
|
254
|
+
<path
|
|
255
|
+
inkscape:connector-curvature="0"
|
|
256
|
+
id="path50"
|
|
257
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
258
|
+
d="M 0,0 V 7 L 5,0 v 7" />
|
|
259
|
+
</g>
|
|
260
|
+
<g
|
|
261
|
+
id="g2292"
|
|
262
|
+
transform="matrix(1.5698347,0,0,1.5698347,10.629972,7.4983416)">
|
|
263
|
+
<g
|
|
264
|
+
id="g2283">
|
|
265
|
+
<g
|
|
266
|
+
transform="matrix(0.35277777,0,0,-0.35277777,60.243146,79.563918)"
|
|
267
|
+
id="g52">
|
|
268
|
+
<path
|
|
269
|
+
inkscape:connector-curvature="0"
|
|
270
|
+
id="path54"
|
|
271
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
272
|
+
d="M 0,0 V -7" />
|
|
273
|
+
</g>
|
|
274
|
+
<g
|
|
275
|
+
transform="matrix(0.35277777,0,0,-0.35277777,60.243146,81.165212)"
|
|
276
|
+
id="g56">
|
|
277
|
+
<path
|
|
278
|
+
inkscape:connector-curvature="0"
|
|
279
|
+
id="path58"
|
|
280
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
281
|
+
d="M 0,0 4,4.539" />
|
|
282
|
+
</g>
|
|
283
|
+
</g>
|
|
284
|
+
<g
|
|
285
|
+
id="g60"
|
|
286
|
+
transform="matrix(0.35277777,0,0,-0.35277777,60.922526,80.394357)">
|
|
287
|
+
<path
|
|
288
|
+
d="M 0,0 2.396,-4.646"
|
|
289
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
290
|
+
id="path62"
|
|
291
|
+
inkscape:connector-curvature="0" />
|
|
292
|
+
</g>
|
|
293
|
+
</g>
|
|
294
|
+
<g
|
|
295
|
+
transform="matrix(0.55467163,0,0,-0.55467163,114.72676,132.39456)"
|
|
296
|
+
id="g64">
|
|
297
|
+
<path
|
|
298
|
+
inkscape:connector-curvature="0"
|
|
299
|
+
id="path66"
|
|
300
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
301
|
+
d="M 0,0 V -7 H 3" />
|
|
302
|
+
</g>
|
|
303
|
+
<g
|
|
304
|
+
transform="matrix(0.55469767,0,0,-0.55469767,113.81845,128.28631)"
|
|
305
|
+
id="g68">
|
|
306
|
+
<path
|
|
307
|
+
inkscape:connector-curvature="0"
|
|
308
|
+
id="path70"
|
|
309
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
310
|
+
d="M 0,0 V 7 L -3,1 -6,7 V 0" />
|
|
311
|
+
</g>
|
|
312
|
+
<g
|
|
313
|
+
transform="matrix(0.55555556,0,0,-0.55555556,90.787866,128.29849)"
|
|
314
|
+
id="g80">
|
|
315
|
+
<path
|
|
316
|
+
inkscape:connector-curvature="0"
|
|
317
|
+
id="path82"
|
|
318
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
319
|
+
d="m 0,0 v 0 c -1.38,0 -2.5,1.119 -2.5,2.5 v 2 C -2.5,5.881 -1.38,7 0,7 1.381,7 2.5,5.881 2.5,4.5 v -2 C 2.5,1.119 1.381,0 0,0 Z" />
|
|
320
|
+
</g>
|
|
321
|
+
<g
|
|
322
|
+
transform="matrix(0.55467778,0,0,-0.55467778,124.37849,124.27704)"
|
|
323
|
+
id="g108">
|
|
324
|
+
<path
|
|
325
|
+
inkscape:connector-curvature="0"
|
|
326
|
+
id="path110"
|
|
327
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
328
|
+
d="M 0,0 V -4.5 C 0,-5.881 -1.119,-7 -2.5,-7 c -0.643,0 -1.229,0.243 -1.673,0.642" />
|
|
329
|
+
</g>
|
|
330
|
+
<g
|
|
331
|
+
transform="matrix(0.55389437,0,0,-0.55389437,111.02257,136.27726)"
|
|
332
|
+
id="g148">
|
|
333
|
+
<path
|
|
334
|
+
inkscape:connector-curvature="0"
|
|
335
|
+
id="path150"
|
|
336
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
337
|
+
d="M 0,0 V 3 L 2,7 0,3 -2,7" />
|
|
338
|
+
</g>
|
|
339
|
+
<g
|
|
340
|
+
transform="matrix(0.55467778,0,0,-0.55467778,97.641831,127.30154)"
|
|
341
|
+
id="g164">
|
|
342
|
+
<path
|
|
343
|
+
inkscape:connector-curvature="0"
|
|
344
|
+
id="path166"
|
|
345
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
346
|
+
d="m -4.7246022,-1.7973498 v 7 h 2.6690001 c 0.963,0 1.74400003,-0.781 1.74400003,-1.744 0,-0.963 -0.78100003,-1.743 -1.74400003,-1.743 h -2.6690001" />
|
|
347
|
+
</g>
|
|
348
|
+
<g
|
|
349
|
+
transform="matrix(0.55555555,0,0,-0.55555555,118.05181,128.28631)"
|
|
350
|
+
id="g80-6">
|
|
351
|
+
<path
|
|
352
|
+
inkscape:connector-curvature="0"
|
|
353
|
+
id="path82-2"
|
|
354
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
355
|
+
d="m 0,0 v 0 c -1.38,0 -2.5,1.119 -2.5,2.5 v 2 C -2.5,5.881 -1.38,7 0,7 1.381,7 2.5,5.881 2.5,4.5 v -2 C 2.5,1.119 1.381,0 0,0 Z" />
|
|
356
|
+
</g>
|
|
357
|
+
<path
|
|
358
|
+
d="m 127.0477,124.18623 v 4.10008"
|
|
359
|
+
style="fill:none;stroke:#000000;stroke-width:0.90913284;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
360
|
+
id="path46"
|
|
361
|
+
inkscape:connector-curvature="0" />
|
|
362
|
+
<g
|
|
363
|
+
transform="matrix(0.55467779,0,0,-0.55467779,97.793415,132.38846)"
|
|
364
|
+
id="g108-1">
|
|
365
|
+
<path
|
|
366
|
+
inkscape:connector-curvature="0"
|
|
367
|
+
id="path110-7"
|
|
368
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
369
|
+
d="M 0,0 V -4.5 C 0,-5.881 -1.119,-7 -2.5,-7 c -0.643,0 -1.229,0.243 -1.673,0.642" />
|
|
370
|
+
</g>
|
|
371
|
+
<g
|
|
372
|
+
id="g959-1"
|
|
373
|
+
transform="matrix(1.5747682,0,0,1.5747682,30.569706,7.0936299)">
|
|
374
|
+
<g
|
|
375
|
+
id="g12-5"
|
|
376
|
+
transform="matrix(0.35277777,0,0,-0.35277777,45.779258,79.563918)">
|
|
377
|
+
<path
|
|
378
|
+
d="M 0,0 H -4 V -7 H 0"
|
|
379
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
380
|
+
id="path14-9"
|
|
381
|
+
inkscape:connector-curvature="0" />
|
|
382
|
+
</g>
|
|
383
|
+
<g
|
|
384
|
+
id="g16-7"
|
|
385
|
+
transform="matrix(0.35277777,0,0,-0.35277777,44.368147,80.79864)">
|
|
386
|
+
<path
|
|
387
|
+
d="M 0,0 H 3"
|
|
388
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
389
|
+
id="path18-7"
|
|
390
|
+
inkscape:connector-curvature="0" />
|
|
391
|
+
</g>
|
|
392
|
+
</g>
|
|
393
|
+
<g
|
|
394
|
+
transform="matrix(0.55467163,0,0,-0.55467163,118.96012,132.39456)"
|
|
395
|
+
id="g64-6">
|
|
396
|
+
<path
|
|
397
|
+
inkscape:connector-curvature="0"
|
|
398
|
+
id="path66-7"
|
|
399
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
400
|
+
d="M 0,0 V -7 H 3" />
|
|
401
|
+
</g>
|
|
402
|
+
</g>
|
|
403
|
+
</svg>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-openmoji
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mohammad Mahdi Baghbani Pourvahid
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: html-pipeline
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.0
|
|
33
|
+
version: 0.1.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.0
|
|
40
|
+
version: 0.1.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: jekyll
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -64,14 +64,14 @@ dependencies:
|
|
|
64
64
|
requirements:
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 0.1.
|
|
67
|
+
version: 0.1.3
|
|
68
68
|
type: :runtime
|
|
69
69
|
prerelease: false
|
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 0.1.
|
|
74
|
+
version: 0.1.3
|
|
75
75
|
- !ruby/object:Gem::Dependency
|
|
76
76
|
name: bundler
|
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -92,14 +92,14 @@ dependencies:
|
|
|
92
92
|
requirements:
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '
|
|
95
|
+
version: '13.0'
|
|
96
96
|
type: :development
|
|
97
97
|
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
100
|
- - "~>"
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '
|
|
102
|
+
version: '13.0'
|
|
103
103
|
- !ruby/object:Gem::Dependency
|
|
104
104
|
name: rspec
|
|
105
105
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -120,14 +120,14 @@ dependencies:
|
|
|
120
120
|
requirements:
|
|
121
121
|
- - "~>"
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: '0.
|
|
123
|
+
version: '0.10'
|
|
124
124
|
type: :development
|
|
125
125
|
prerelease: false
|
|
126
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
127
|
requirements:
|
|
128
128
|
- - "~>"
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '0.
|
|
130
|
+
version: '0.10'
|
|
131
131
|
- !ruby/object:Gem::Dependency
|
|
132
132
|
name: simplecov
|
|
133
133
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -146,7 +146,7 @@ description: |-
|
|
|
146
146
|
OpenMoji emoji pack plugin for Jekyll with powerful
|
|
147
147
|
configuration options and support for various emoji image file
|
|
148
148
|
sources and extensions. in addition to OpenMoji emojis, you can
|
|
149
|
-
also configure it to use any emoji
|
|
149
|
+
also configure it to use any available emoji sources.
|
|
150
150
|
email: MahdiBaghbani@protonmail.com
|
|
151
151
|
executables: []
|
|
152
152
|
extensions: []
|
|
@@ -174,6 +174,7 @@ files:
|
|
|
174
174
|
- lib/jekyll-openmoji.rb
|
|
175
175
|
- lib/jekyll-openmoji/plugin.rb
|
|
176
176
|
- lib/jekyll-openmoji/version.rb
|
|
177
|
+
- logo.svg
|
|
177
178
|
homepage: https://gitlab.com/Azadeh-Afzar/Web-Development/OpenMoji-Jekyll-Plugin
|
|
178
179
|
licenses:
|
|
179
180
|
- GPL-3.0
|