fbdoorman 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ Added mailer_sender to the settings
2
+
1
3
  0.6 08/27/2010
2
4
  ----------------
3
5
  Added to the default permission, publish to strea
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
18
18
  gem.summary = "Rails authentication with facebook single sign-on OR email & password."
19
19
  gem.description = "Painless user registration and sign-in using Facebook single sign-on with JS. Typical email login still works too."
20
20
  gem.email = "pelaez89@gmail.com"
21
- gem.version = "0.0.6"
21
+ gem.version = "0.0.7"
22
22
  gem.homepage = "http://github.com/davidpelaez/minifb-clearance"
23
23
  gem.authors = ["Fbdoorman: David Pelaez","MiniFB: Appoxy","Clearance: Thoughtbot"]
24
24
  gem.files = FileList["[A-Z]*", "{app,config,generators,lib,shoulda_macros,rails}/**/*"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.7
@@ -3,7 +3,7 @@ module Clearance
3
3
  attr_accessor :mailer_sender
4
4
 
5
5
  def initialize
6
- @mailer_sender = 'donotreply@example.com'
6
+ @mailer_sender = MAILER_SENDER
7
7
  end
8
8
  end
9
9
 
data/lib/fbdoorman.rb CHANGED
@@ -14,6 +14,7 @@ FB = YAML.load_file("#{RAILS_ROOT}/config/facebook.yml")
14
14
  FB_API_KEY = FB[:api_key]
15
15
  FB_APP_ID = FB[:app_id]
16
16
  FB_SECRET = FB[:secret]
17
+ MAILER_SENDER = FB[:mailer_sender]
17
18
 
18
19
  #This routed will be name with clearance routes as /facebook
19
20
  FB_CALLBACK_URL = "#{FB[:base_url]}/facebook"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fbdoorman
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Fbdoorman: David Pelaez"
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-08-27 00:00:00 -05:00
20
+ date: 2010-09-02 00:00:00 -05:00
21
21
  default_executable:
22
22
  dependencies: []
23
23