fun_emoji 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ae6152d5934d5f47d624ee240089c31ec3956db79459846ec0355af31e3b37cd
4
+ data.tar.gz: 5a17595ca208eaccb6d82abed9403a416f568053d6f5f7a63f371aed1d1d1e43
5
+ SHA512:
6
+ metadata.gz: 7f7fef7e49f4b3e609bc17b100e7b4105010ca03dc55460aaa09d835b8773afa9b2a4a23e0f5c2f6a17e7e3d69c2db9bdb9cf20f96598cd6fb4814e1bef6d656
7
+ data.tar.gz: bd05d9b4264eca604bf972eb949c21ecbc1c5227c31208bbad655a61d3c1e18b9413eae4d6dddaea8c31383d090b7d25bad5c5ab6cbf988e2f050c0eb9eb77e6
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # FunEmoji
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/fun_emoji`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'fun_emoji'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install fun_emoji
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fun_emoji. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the FunEmoji project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/fun_emoji/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,4 @@
1
+ {
2
+ "winking_tongue": "&#128540",
3
+ "grinning_face": "&#128512"
4
+ }
@@ -0,0 +1,3 @@
1
+ module FunEmoji
2
+ VERSION = "0.1.0"
3
+ end
data/lib/fun_emoji.rb ADDED
@@ -0,0 +1,23 @@
1
+ require "fun_emoji/version"
2
+
3
+ module FunEmoji
4
+ class Index
5
+
6
+ attr_reader :emoji_list
7
+
8
+ def initialize(emoji_list = nil)
9
+ emoji_list ||= begin
10
+ emoji_json = File.read(File.absolute_path(File.dirname(__FILE__) + '/../../config/emoji_list.json'))
11
+ JSON.parse(emoji_json)
12
+ end
13
+
14
+ @emoji_list = emoji_list
15
+ end
16
+
17
+ # emoji_list.each do |key, value|
18
+ # define_method :"#{key}" do
19
+ # content_tag(:span, value, { class: "emoji-#{key.dasherize}" }, false)
20
+ # end
21
+ # end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fun_emoji
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Srinidhi G S
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-04-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: We can use methods to get the Emoji instead of using unreadable unicode
56
+ starting with &#
57
+ email:
58
+ - srini.satti@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - README.md
64
+ - config/emoji_list.json
65
+ - lib/fun_emoji.rb
66
+ - lib/fun_emoji/version.rb
67
+ homepage: http://www.techenthu.in
68
+ licenses:
69
+ - MIT
70
+ metadata: {}
71
+ post_install_message:
72
+ rdoc_options: []
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ requirements: []
86
+ rubyforge_project:
87
+ rubygems_version: 2.7.7
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Emoji from it's name. No more unreadable unicode
91
+ test_files: []