faces 0.6.4 → 0.6.5
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.markdown +5 -3
- data/VERSION +1 -1
- data/faces.gemspec +2 -2
- data/lib/faces.rb +1 -0
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -2,15 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
<small>Avatars made easy, by [Nick Pellant](http://nickpellant.com).</small>
|
|
4
4
|
|
|
5
|
-
Faces
|
|
5
|
+
**Faces** - a pluggable avatar architecture for universal implementation of avatars from multiple/external sources. Originally constructed to rectify a problem faced at [Silentale](http://silentale.com) when improving our avatar architecture. By default Faces comes equipped with providers for the following services:
|
|
6
6
|
|
|
7
|
-
* [Facebook](http://facebook.com)
|
|
7
|
+
* [Facebook](http://facebook.com) using [FBML](http://wiki.developers.facebook.com/index.php/FBML)
|
|
8
8
|
* [Twitter](http://twitter.com) via [Tweet Images](http://tweetimag.es/)
|
|
9
9
|
* [Highrise](http://highrisehq.com)
|
|
10
10
|
* [Flickr](http:/flickr.com)
|
|
11
11
|
* [Gravatar](http://gravatar.com)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
If you create a super-cool new provider make sure to give me a pull request so everyone can experience it.
|
|
14
|
+
|
|
15
|
+
Faces will also be released in [PHP](http://github.com/nickpellant/faces-php) and [Python](http://github.com/nickpellant/faces-python) over the coming weeks. Stay tuned for more information on those.
|
|
14
16
|
|
|
15
17
|
## Public methods
|
|
16
18
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.5
|
data/faces.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{faces}
|
|
8
|
-
s.version = "0.6.
|
|
8
|
+
s.version = "0.6.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Nick Pellant"]
|
|
12
|
-
s.date = %q{2010-04-
|
|
12
|
+
s.date = %q{2010-04-29}
|
|
13
13
|
s.description = %q{Avatars made super simple.}
|
|
14
14
|
s.email = %q{nick@silentale.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/faces.rb
CHANGED
|
@@ -91,6 +91,7 @@ module Faces
|
|
|
91
91
|
html += " width=\"#{m_configuration[:width]}\"" if m_configuration[:width].present?
|
|
92
92
|
html += " height=\"#{m_configuration[:height]}\"" if m_configuration[:height].present?
|
|
93
93
|
html += " alt=\"#{m_configuration[:alt]}\"" if m_configuration[:alt].present?
|
|
94
|
+
html += " title=\"#{m_configuration[:title]}\"" if m_configuration[:title].present?
|
|
94
95
|
html += ' />'
|
|
95
96
|
end
|
|
96
97
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 6
|
|
8
|
-
-
|
|
9
|
-
version: 0.6.
|
|
8
|
+
- 5
|
|
9
|
+
version: 0.6.5
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Nick Pellant
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-04-
|
|
17
|
+
date: 2010-04-29 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|