wheels 0.0.47 → 0.0.48

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 CHANGED
@@ -1 +1 @@
1
- 0.0.47
1
+ 0.0.48
@@ -9,7 +9,10 @@ class UsersController < InheritedResources::Base
9
9
  end
10
10
 
11
11
  def update
12
- update!(:notice=>"Your password has been updated.") {root_url}
12
+ update! do |success, failure|
13
+ failure.html{redirect_to "/change_password"}
14
+ success.html{flash[:notice] = "Your password has been updated."; redirect_to root_url}
15
+ end
13
16
  end
14
17
 
15
18
  def verify
data/wheels.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{wheels}
8
- s.version = "0.0.47"
8
+ s.version = "0.0.48"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tyler Gannon"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 47
9
- version: 0.0.47
8
+ - 48
9
+ version: 0.0.48
10
10
  platform: ruby
11
11
  authors:
12
12
  - Tyler Gannon