fbdoorman 0.7.6 → 0.7.7

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/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.7.6"
21
+ gem.version = "0.7.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.7.6
1
+ 0.7.7
@@ -15,7 +15,8 @@ class Clearance::UsersController < ApplicationController
15
15
  @user = ::User.new params[:user]
16
16
  if @user.save
17
17
  flash_notice_after_create
18
- redirect_to(url_after_create)
18
+ sign_in(@user) #Login recently created user
19
+ #redirect_to(url_after_create)
19
20
  else
20
21
  render :template => 'users/new'
21
22
  end
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: 15
5
- prerelease: false
4
+ hash: 13
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 6
10
- version: 0.7.6
9
+ - 7
10
+ version: 0.7.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Fbdoorman: David Pelaez"
@@ -17,8 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-12-29 00:00:00 -05:00
21
- default_executable:
20
+ date: 2010-12-29 00:00:00 Z
22
21
  dependencies: []
23
22
 
24
23
  description: Painless user registration and sign-in using Facebook single sign-on with JS. Typical email login still works too.
@@ -73,7 +72,6 @@ files:
73
72
  - lib/fbdoorman.rb
74
73
  - lib/mini_fb.rb
75
74
  - rails/init.rb
76
- has_rdoc: true
77
75
  homepage: http://github.com/davidpelaez/minifb-clearance
78
76
  licenses: []
79
77
 
@@ -103,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
101
  requirements: []
104
102
 
105
103
  rubyforge_project:
106
- rubygems_version: 1.3.7
104
+ rubygems_version: 1.7.2
107
105
  signing_key:
108
106
  specification_version: 3
109
107
  summary: Rails authentication with facebook single sign-on OR email & password.