faces 0.6.4 → 0.6.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +5 -3
  2. data/VERSION +1 -1
  3. data/faces.gemspec +2 -2
  4. data/lib/faces.rb +1 -0
  5. metadata +3 -3
@@ -2,15 +2,17 @@
2
2
 
3
3
  <small>Avatars made easy, by [Nick Pellant](http://nickpellant.com).</small>
4
4
 
5
- Faces is an avatar provider/management library. It allows developers to fetch avatars from multiple sources in a consistent manner. Faces was built to rectify a problem originally faced when improving the avatars system at [Silentale](http://silentale.com). Faces has default support for the following avatar sources:
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
- Faces is now available in both [Ruby](http://github.com/nickpellant/faces) and [PHP](http://github.com/nickpellant/faces-php) with a Python version in its way soon. As Faces is available in multiple languages provider support may vary from one project to another however it will be attempted to keep default provider support synchronized.
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.4
1
+ 0.6.5
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{faces}
8
- s.version = "0.6.4"
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-14}
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 = [
@@ -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
- - 4
9
- version: 0.6.4
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-14 00:00:00 +02:00
17
+ date: 2010-04-29 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies: []
20
20