emojionearea-rails 1.1.2 → 1.1.3
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/README.md +3 -1
- data/lib/emojionearea/rails/helper.rb +1 -1
- data/lib/emojionearea/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58b91f229b201f6686dfdb895ae6121465e592f4
|
4
|
+
data.tar.gz: d7ddc62c7ef2e5497afa81028ea2a766295829a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b601f00fb0ba16e48175f9a2c1c938696dc9c455bf12d67ba9cbfe18ee01ca44aae0a2994d43069efb979fd90eb8aa9ba7ecbe6a1ebce14e5e5ae8469382db1f
|
7
|
+
data.tar.gz: 924eced21ed47a23f0ce44b4dc15758e7f572bcf52e7527cbb4c88d951413303bebc179ec2cbf94c16ed0a4c516d54b23db758b720332dc7af4110bcf4b74b7a
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ https://github.com/mervick/emojionearea
|
|
10
10
|
Add this line to your application's Gemfile:
|
11
11
|
|
12
12
|
```ruby
|
13
|
-
gem 'emojionearea-rails', '~> 1.1.
|
13
|
+
gem 'emojionearea-rails', '~> 1.1.2'
|
14
14
|
```
|
15
15
|
|
16
16
|
And then execute:
|
@@ -111,6 +111,8 @@ That's it.
|
|
111
111
|
```
|
112
112
|
* v1.1.2 :
|
113
113
|
- update z-index of picker to 100.
|
114
|
+
* v1.1.3 :
|
115
|
+
- update `gemojify` helper method (removed asset_path)
|
114
116
|
|
115
117
|
## Development
|
116
118
|
|
@@ -8,7 +8,7 @@ module Emojionearea
|
|
8
8
|
text_symbol = Rumoji.encode(content)
|
9
9
|
text_symbol.gsub(/:([\w+-]+):/) do |match|
|
10
10
|
if emoji = Emoji.find_by_alias($1)
|
11
|
-
image_tag(
|
11
|
+
image_tag("png_64/#{emoji.image_filename.split("/").last}", size:'16x16', style:"vertical-align:middle")
|
12
12
|
else
|
13
13
|
match
|
14
14
|
end
|