muck-users 3.1.14 → 3.1.15

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
- 3.1.14
1
+ 3.1.15
@@ -56,7 +56,10 @@ class Muck::UserSessionsController < ApplicationController
56
56
  end
57
57
  else
58
58
  respond_to do |format|
59
- format.html { render :template => 'user_sessions/new', :notice => t('muck.users.login_fail') }
59
+ format.html do
60
+ flash[:notice] = t('muck.users.login_fail')
61
+ render :template => 'user_sessions/new'
62
+ end
60
63
  format.json { render :json => { :logged_in => false, :message => t('muck.users.login_fail') } }
61
64
  end
62
65
  end
data/muck-users.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-users}
8
- s.version = "3.1.14"
8
+ s.version = "3.1.15"
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"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-users
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 1
9
- - 14
10
- version: 3.1.14
9
+ - 15
10
+ version: 3.1.15
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball