simple-login 0.1.6 → 0.1.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/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/lib/rails/generators/simple_login/USAGE +0 -0
- data/lib/rails/generators/simple_login/simple_login_generator.rb +0 -0
- data/lib/rails/generators/simple_login/templates/application_controller.rb +0 -0
- data/lib/rails/generators/simple_login/templates/controllers/password_resets_controller.rb +0 -0
- data/lib/rails/generators/simple_login/templates/controllers/sessions_controller.rb +0 -0
- data/lib/rails/generators/simple_login/templates/controllers/users_controller.rb +0 -0
- data/lib/rails/generators/simple_login/templates/create_users.rb +0 -0
- data/lib/rails/generators/simple_login/templates/mailers/user_mailer.rb +0 -0
- data/lib/rails/generators/simple_login/templates/models/user.rb +0 -0
- data/lib/rails/generators/simple_login/templates/views/password_resets/edit.html.erb +0 -0
- data/lib/rails/generators/simple_login/templates/views/password_resets/new.html.erb +0 -0
- data/lib/rails/generators/simple_login/templates/views/sessions/new.html.erb +0 -0
- data/lib/rails/generators/simple_login/templates/views/user_mailer/account_confirmation.text.erb +0 -0
- data/lib/rails/generators/simple_login/templates/views/user_mailer/password_reset.text.erb +0 -0
- data/lib/rails/generators/simple_login/templates/views/users/new.html.erb +0 -0
- data/lib/simple_login.rb +0 -0
- data/lib/simple_login/version.rb +1 -1
- metadata +5 -5
data/Gemfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/rails/generators/simple_login/templates/views/user_mailer/account_confirmation.text.erb
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/lib/simple_login.rb
CHANGED
File without changes
|
data/lib/simple_login/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple-login
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-08-19 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! 'simple-login creates a basic and simple login system for Rails 3 apps.
|
15
15
|
It is based on Railscasts Authentication from Scratch videos. Usage: create your
|
16
|
-
rails app, then add this gem to your Gemfile. Finally, just type ''rails g
|
16
|
+
rails app, then add this gem to your Gemfile. Finally, just type ''rails g simple_login''.
|
17
17
|
All these routes are available: signup_path, login_path, logout_path, password_reset_path.
|
18
18
|
Also, these methods are available: authorize and current_user. More info on github
|
19
19
|
page.'
|
@@ -63,9 +63,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
65
|
rubyforge_project:
|
66
|
-
rubygems_version: 1.8.
|
66
|
+
rubygems_version: 1.8.24
|
67
67
|
signing_key:
|
68
68
|
specification_version: 3
|
69
69
|
summary: simple-login can be used easily by adding the gem into your Gemfile and type
|
70
|
-
the following command 'rails g
|
70
|
+
the following command 'rails g simple_login'.
|
71
71
|
test_files: []
|