salted_login_generator 1.0.4 → 1.0.5

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.
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.8
3
3
  specification_version: 1
4
4
  name: salted_login_generator
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.4
7
- date: 2005-04-16
6
+ version: 1.0.5
7
+ date: 2005-04-19
8
8
  summary: "[Rails] Login generator with salted passwords."
9
9
  require_paths:
10
10
  - "."
@@ -41,17 +41,22 @@ files:
41
41
  - templates/view_login.rhtml
42
42
  - templates/view_logout.rhtml
43
43
  - templates/view_signup.rhtml
44
+ - templates/view_edit.rhtml
45
+ - templates/_view_edit.rhtml
46
+ - templates/_view_password.rhtml
44
47
  - templates/view_welcome.rhtml
45
- - templates/user_model.sql
48
+ - templates/user_model.erbsql
46
49
  - templates/notify.rb
47
50
  - templates/view_forgot_password.rhtml
48
51
  - templates/view_change_password.rhtml
49
52
  - templates/notify_signup.rhtml
50
53
  - templates/notify_forgot_password.rhtml
51
54
  - templates/notify_change_password.rhtml
52
- - templates/app-config-development.yml
53
- - templates/app-config-production.yml
54
- - templates/app-config-test.yml
55
+ - templates/mock_notify.rb
56
+ - templates/mock_time.rb
57
+ - templates/login_environment.rb
58
+ - templates/create_db
59
+ - templates/en.yaml
55
60
  test_files: []
56
61
  rdoc_options: []
57
62
  extra_rdoc_files: []
@@ -1,6 +0,0 @@
1
- email_from:
2
- admin_email:
3
- server_env: development
4
- app_url:
5
- app_base_uri:
6
- app_name:
@@ -1,6 +0,0 @@
1
- email_from:
2
- admin_email:
3
- server_env: production
4
- app_url:
5
- app_base_uri:
6
- app_name:
@@ -1,6 +0,0 @@
1
- email_from:
2
- admin_email:
3
- server_env: test
4
- app_url:
5
- app_base_uri:
6
- app_name:
@@ -1,15 +0,0 @@
1
- CREATE TABLE users (
2
- id int NOT NULL auto_increment,
3
- login varchar(80) default NULL,
4
- password varchar(40) default NULL,
5
- email varchar(60) default NULL,
6
- firstname varchar(40) default NULL,
7
- lastname varchar(40) default NULL,
8
- uuid char(40) default NULL,
9
- salt char(40) default NULL,
10
- verified INT default 0,
11
- created_at DATETIME default NULL,
12
- updated_at DATETIME default NULL,
13
- logged_in_at DATETIME default NULL,
14
- PRIMARY KEY (id)
15
- ) TYPE=InnoDB;