emoticons_helper 0.1.0 → 0.1.1
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.
- data/README.rdoc +19 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/emoticons_helper.gemspec +3 -3
- data/lib/generators/{initializer_generator.rb → smile_generator.rb} +1 -1
- metadata +4 -4
data/README.rdoc
CHANGED
@@ -1,9 +1,26 @@
|
|
1
1
|
= emoticons_helper
|
2
2
|
|
3
|
-
|
3
|
+
How to use
|
4
|
+
|
5
|
+
Include the gem in the Gemfile
|
6
|
+
|
7
|
+
gem "emoticons_helper"
|
8
|
+
|
9
|
+
Run bundle install
|
10
|
+
|
11
|
+
Run the generator
|
12
|
+
|
13
|
+
rails generate smile
|
14
|
+
|
15
|
+
Now in your view file use the method replace_smilies
|
16
|
+
|
17
|
+
<%= replace_smilies(text) %>
|
4
18
|
|
5
19
|
== Contributing to emoticons_helper
|
6
|
-
|
20
|
+
|
21
|
+
Please checkout and add your favourite smiley to enhance this gem and bring a smile on every gem users.
|
22
|
+
Keep coding Keep rocking.
|
23
|
+
|
7
24
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
8
25
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
9
26
|
* Fork the project.
|
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
|
|
18
18
|
gem.homepage = "http://github.com/gravindra/emoticons_helper"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{This Gem Rocks ... }
|
21
|
-
gem.description = %Q{
|
21
|
+
gem.description = %Q{Gives face to your text.}
|
22
22
|
gem.email = "ravighare26@gmail.com"
|
23
23
|
gem.authors = ["gravindra"]
|
24
24
|
# dependencies defined in Gemfile
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/emoticons_helper.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{emoticons_helper}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["gravindra"]
|
12
12
|
s.date = %q{2013-03-30}
|
13
|
-
s.description = %q{
|
13
|
+
s.description = %q{Gives face to your text.}
|
14
14
|
s.email = %q{ravighare26@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
"VERSION",
|
27
27
|
"emoticons_helper.gemspec",
|
28
28
|
"lib/emoticons_helper.rb",
|
29
|
-
"lib/generators/
|
29
|
+
"lib/generators/smile_generator.rb",
|
30
30
|
"lib/generators/templates/smilies-sprite.png",
|
31
31
|
"lib/generators/templates/smilies.css",
|
32
32
|
"lib/generators/templates/smilies.yml",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- gravindra
|
@@ -68,7 +68,7 @@ dependencies:
|
|
68
68
|
type: :development
|
69
69
|
version_requirements: *id004
|
70
70
|
name: rcov
|
71
|
-
description:
|
71
|
+
description: Gives face to your text.
|
72
72
|
email: ravighare26@gmail.com
|
73
73
|
executables: []
|
74
74
|
|
@@ -87,7 +87,7 @@ files:
|
|
87
87
|
- VERSION
|
88
88
|
- emoticons_helper.gemspec
|
89
89
|
- lib/emoticons_helper.rb
|
90
|
-
- lib/generators/
|
90
|
+
- lib/generators/smile_generator.rb
|
91
91
|
- lib/generators/templates/smilies-sprite.png
|
92
92
|
- lib/generators/templates/smilies.css
|
93
93
|
- lib/generators/templates/smilies.yml
|