muck-users 0.2.14 → 0.2.15

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -10,13 +10,8 @@ Then
10
10
 
11
11
  Use search logic for searching users. Add this to environment.rb:
12
12
 
13
- config.gem "authlogic",
14
- :source => 'http://gems.github.com',
15
- :version => '~> 2.1.1'
16
-
17
- config.gem "searchlogic",
18
- :source => 'http://gems.github.com',
19
- :version => '~> 2.3.3'
13
+ config.gem "authlogic"
14
+ config.gem "searchlogic"
20
15
 
21
16
 
22
17
  In addition, you will need to install the ssl_requirement plugin (http://github.com/rails/ssl_requirement/tree/master) into your Rails project:
data/Rakefile CHANGED
@@ -29,6 +29,7 @@ begin
29
29
  Jeweler::RubyforgeTasks.new do |rubyforge|
30
30
  rubyforge.doc_task = "rdoc"
31
31
  end
32
+ Jeweler::GemcutterTasks.new
32
33
  rescue LoadError
33
34
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
34
35
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.14
1
+ 0.2.15
@@ -5,6 +5,14 @@ class Muck::UserSessionsController < ApplicationController
5
5
  before_filter :login_required, :only => :destroy
6
6
  before_filter :not_logged_in_required, :only => [:new, :create]
7
7
 
8
+ def show
9
+ if logged_in?
10
+ redirect_to current_user
11
+ else
12
+ redirect_to login_path
13
+ end
14
+ end
15
+
8
16
  def new
9
17
  @title = t('muck.users.sign_in_title')
10
18
  @user_session = UserSession.new
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.14"
8
+ s.version = "0.2.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"]
12
- s.date = %q{2009-10-17}
12
+ s.date = %q{2009-10-27}
13
13
  s.description = %q{Easily add user signup, login and other features to your application}
14
14
  s.email = %q{justinball@gmail.com}
15
15
  s.extra_rdoc_files = [
data/rails/init.rb CHANGED
@@ -1,29 +1,29 @@
1
1
  ActiveSupport::Dependencies.load_once_paths << lib_path
2
2
 
3
3
  if config.respond_to?(:gems)
4
- config.gem "binarylogic-authlogic", :lib => 'authlogic', :source => 'http://gems.github.com'
4
+ config.gem "authlogic"
5
5
  else
6
6
  begin
7
- require 'binarylogic-authlogic'
7
+ require 'authlogic'
8
8
  rescue LoadError
9
9
  begin
10
- gem 'binarylogic-authlogic'
10
+ gem 'authlogic'
11
11
  rescue Gem::LoadError
12
- puts "Please install the binarylogic-authlogic gem"
12
+ puts "Please install the authlogic gem"
13
13
  end
14
14
  end
15
15
  end
16
16
 
17
17
  if config.respond_to?(:gems)
18
- config.gem "binarylogic-searchlogic", :lib => 'searchlogic', :source => 'http://gems.github.com'
18
+ config.gem "searchlogic"
19
19
  else
20
20
  begin
21
- require 'binarylogic-searchlogic'
21
+ require 'searchlogic'
22
22
  rescue LoadError
23
23
  begin
24
- gem 'binarylogic-searchlogic'
24
+ gem 'searchlogic'
25
25
  rescue Gem::LoadError
26
- puts "Please install the binarylogic-searchlogic gem"
26
+ puts "Please install the searchlogic gem"
27
27
  end
28
28
  end
29
29
  end
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.14
4
+ version: 0.2.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-17 00:00:00 -06:00
12
+ date: 2009-10-27 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency