faces 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.markdown +6 -6
  2. data/VERSION +1 -1
  3. data/faces.gemspec +1 -1
  4. metadata +2 -2
data/README.markdown CHANGED
@@ -126,32 +126,32 @@ Facebook avatar sizes are calculated dynamically from your configuration. Availa
126
126
 
127
127
  The Twitter provider uses the [Tweet Images](http://tweetimag.es/) mapper to provide urls (an awesome project from [Joe Stump](http://stu.mp)). It supports both **html** and **url** calls.
128
128
 
129
- There are a few additional configuration options available for Gravatar that you may want to look at.
129
+ There are a few additional configuration options available for Twitter that you may want to look at.
130
130
 
131
131
  * ::Faces::Configuration::TWITTER
132
132
  * Provider specific html classes (string)
133
- * :html\_provider\_classes => 'gravatar'
133
+ * :html\_provider\_classes => 'twitter'
134
134
 
135
135
  Twitter avatar sizes are calculated dynamically from your configuration. Available sizes are 24x24, 48x48, 73x73 and the original size. Faces calculates which of the available sizes provided by twitter best matches the dimensions you provided. If you select to receive only square images but choose a size over 73x73 you will be given the largest possible square avatar.
136
136
 
137
137
  ### Further reading
138
138
 
139
- * [Full Gravatar provider documentation](http://nickpellant.com/open-source/faces/ruby/provider/gravatar)
139
+ * [Full Twitter provider documentation](http://nickpellant.com/open-source/faces/ruby/provider/twitter)
140
140
  * [Tweet Images](http://tweetimag.es/)
141
141
 
142
142
  ## Highrise Provider
143
143
 
144
144
  Supports both **html** and **url** calls.
145
145
 
146
- Highrise expects a **contact\_id** as it's identifier parameter. It also expects the configuration option :highrise\_account\_name to be set appropriately.
146
+ Highrise expects a **contact\_id** as it's identifier parameter. It also expects the configuration option `:highrise_account_name` to be set appropriately.
147
147
 
148
148
  <small>_for those who do not know the account name for highrise is the subdomain, i.e. myaccountname.highrisehq.com_</small>
149
149
 
150
150
  There are a few additional configuration options available for Highrise that you may want to look at.
151
151
 
152
- * ::Faces::Configuration::FLICKR
152
+ * ::Faces::Configuration::HIGHRISE
153
153
  * Provider specific html classes (string)
154
- * :html\_provider\_classes => 'flickr'
154
+ * :html\_provider\_classes => 'highrise'
155
155
 
156
156
  Highrise avatar sizes are calculated dynamically from your configuration. Available sizes are 32x32 and 53x53. Faces calculates which of the available sizes provided by Highrise best matches the dimensions you provided.
157
157
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
data/faces.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{faces}
8
- s.version = "0.5.0"
8
+ s.version = "0.5.1"
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"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 0
9
- version: 0.5.0
8
+ - 1
9
+ version: 0.5.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nick Pellant