avataree 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +61 -0
- metadata +5 -5
- data/README +0 -19
data/README.textile
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
h1. Avataree
|
2
|
+
|
3
|
+
Ruby DSL for Gravatar profile and images.
|
4
|
+
|
5
|
+
Can be used in Sinatra, Rails or Standalone.
|
6
|
+
|
7
|
+
h2. What is it?
|
8
|
+
|
9
|
+
Again I'll repeat that it's a "Ruby DSL for "Gravatar":http://en.gravatar.com profile and images."
|
10
|
+
|
11
|
+
h2. Getting Started
|
12
|
+
|
13
|
+
create a dependency in your Gemfile
|
14
|
+
|
15
|
+
@gem 'avataree'@
|
16
|
+
|
17
|
+
then run
|
18
|
+
|
19
|
+
@bundle install@
|
20
|
+
|
21
|
+
and you avataree will be up and running.
|
22
|
+
|
23
|
+
h2. How to use It
|
24
|
+
|
25
|
+
yeah.. that sound's a good question.
|
26
|
+
|
27
|
+
in your controller
|
28
|
+
|
29
|
+
for fetching gravatar image
|
30
|
+
|
31
|
+
@gravatar(email)@
|
32
|
+
|
33
|
+
for fetching gravatar profile
|
34
|
+
|
35
|
+
@gravatar_profile(email)@
|
36
|
+
|
37
|
+
h2. Credits
|
38
|
+
|
39
|
+
Credit for this gem goes to Gravatar team for making such a awesome application.
|
40
|
+
|
41
|
+
h2. More Info
|
42
|
+
|
43
|
+
For detailed info visit my blog "http://BagwanPankaj.com":http://bagwanpankaj.com
|
44
|
+
|
45
|
+
For more info write me at bagwanpankaj[at]gmail.com or me[at]bagwanpankaj.com
|
46
|
+
|
47
|
+
Copyright (c) 2010 Bagwan Pankaj: http://bagwanpankaj.com, released under the MIT license
|
48
|
+
|
49
|
+
h2. Contributing to avataree
|
50
|
+
|
51
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
52
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
53
|
+
* Fork the project
|
54
|
+
* Start a feature/bugfix branch
|
55
|
+
* Commit and push until you are happy with your contribution
|
56
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
57
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
58
|
+
|
59
|
+
== Copyright
|
60
|
+
|
61
|
+
Copyright (c) 2010 [Bagwan Pankaj]. See LICENSE.txt for further details.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avataree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Bagwan Pankaj (a.k.a modulo9)
|
@@ -116,14 +116,14 @@ extensions: []
|
|
116
116
|
|
117
117
|
extra_rdoc_files:
|
118
118
|
- LICENSE.txt
|
119
|
-
- README
|
119
|
+
- README.textile
|
120
120
|
files:
|
121
121
|
- lib/avataree.rb
|
122
122
|
- lib/avataree/helper.rb
|
123
123
|
- lib/avataree/image.rb
|
124
124
|
- lib/avataree/profile.rb
|
125
125
|
- LICENSE.txt
|
126
|
-
- README
|
126
|
+
- README.textile
|
127
127
|
- test/avataree_test.rb
|
128
128
|
- test/helper.rb
|
129
129
|
- test/test_avataree.rb
|
data/README
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
= Avataree
|
2
|
-
|
3
|
-
Ruby DSL for Gravatar profile and images
|
4
|
-
|
5
|
-
Description goes here.
|
6
|
-
|
7
|
-
== Contributing to avataree
|
8
|
-
|
9
|
-
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
10
|
-
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
11
|
-
* Fork the project
|
12
|
-
* Start a feature/bugfix branch
|
13
|
-
* Commit and push until you are happy with your contribution
|
14
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
15
|
-
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
16
|
-
|
17
|
-
== Copyright
|
18
|
-
|
19
|
-
Copyright (c) 2010 [Bagwan Pankaj]. See LICENSE.txt for further details.
|