muck-users 0.2.22 → 0.2.23
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/VERSION +1 -1
- data/lib/action_controller/authentic_application.rb +6 -1
- data/muck-users.gemspec +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.23
|
|
@@ -190,11 +190,16 @@ module ActionController
|
|
|
190
190
|
session[:return_to] = request.request_uri
|
|
191
191
|
end
|
|
192
192
|
end
|
|
193
|
-
|
|
193
|
+
|
|
194
194
|
def store_referer
|
|
195
195
|
session[:refer_to] = request.env["HTTP_REFERER"]
|
|
196
196
|
end
|
|
197
197
|
|
|
198
|
+
# Set the return to to a specified url
|
|
199
|
+
def set_return_to(url)
|
|
200
|
+
session[:return_to] = url
|
|
201
|
+
end
|
|
202
|
+
|
|
198
203
|
# Redirect to the URI stored by the most recent store_location call or
|
|
199
204
|
# to the passed default.
|
|
200
205
|
def redirect_back_or_default(default)
|
data/muck-users.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{muck-users}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.23"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Ball", "Joel Duffin"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-22}
|
|
13
13
|
s.description = %q{Easily add user signup, login and other features to your application}
|
|
14
14
|
s.email = %q{justin@tatemae.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: muck-users
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.23
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Ball
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-01-
|
|
13
|
+
date: 2010-01-22 00:00:00 -07:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|