innetra-easy_authentication 0.1.1 → 1.0.0
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/Manifest +51 -0
- data/Rakefile +1 -1
- data/easy_authentication.gemspec +2 -2
- metadata +2 -2
data/Manifest
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
easy_authentication.gemspec
|
2
|
+
Manifest
|
3
|
+
tasks/sysadmin.rake
|
4
|
+
tasks/rights.rake
|
5
|
+
generators/easy_authentication/templates/stylesheets/users.css
|
6
|
+
generators/easy_authentication/templates/stylesheets/login.css
|
7
|
+
generators/easy_authentication/templates/stylesheets/roles.css
|
8
|
+
generators/easy_authentication/templates/stylesheets/default.css
|
9
|
+
generators/easy_authentication/templates/helpers/shadowbox_helper.rb
|
10
|
+
generators/easy_authentication/templates/helpers/form_helper.rb
|
11
|
+
generators/easy_authentication/templates/migrations/easy_authentication.rb
|
12
|
+
generators/easy_authentication/templates/views/user_roles/edit.html.erb
|
13
|
+
generators/easy_authentication/templates/views/user_password/edit.html.erb
|
14
|
+
generators/easy_authentication/templates/views/user_password/reset_password.html.erb
|
15
|
+
generators/easy_authentication/templates/views/user_password/forgot_password.html.erb
|
16
|
+
generators/easy_authentication/templates/views/sessions/new.html.erb
|
17
|
+
generators/easy_authentication/templates/views/users/index.html.erb
|
18
|
+
generators/easy_authentication/templates/views/users/show.html.erb
|
19
|
+
generators/easy_authentication/templates/views/users/_user.html.erb
|
20
|
+
generators/easy_authentication/templates/views/users/edit.html.erb
|
21
|
+
generators/easy_authentication/templates/views/users/new.html.erb
|
22
|
+
generators/easy_authentication/templates/views/users/_form.html.erb
|
23
|
+
generators/easy_authentication/templates/views/roles/index.html.erb
|
24
|
+
generators/easy_authentication/templates/views/roles/show.html.erb
|
25
|
+
generators/easy_authentication/templates/views/roles/edit.html.erb
|
26
|
+
generators/easy_authentication/templates/views/roles/new.html.erb
|
27
|
+
generators/easy_authentication/templates/views/roles/_form.html.erb
|
28
|
+
generators/easy_authentication/templates/site_keys.rb
|
29
|
+
generators/easy_authentication/templates/models/user_mailer.rb
|
30
|
+
generators/easy_authentication/templates/models/right.rb
|
31
|
+
generators/easy_authentication/templates/models/user.rb
|
32
|
+
generators/easy_authentication/templates/models/role.rb
|
33
|
+
generators/easy_authentication/templates/controllers/user_roles_controller.rb
|
34
|
+
generators/easy_authentication/templates/controllers/sessions_controller.rb
|
35
|
+
generators/easy_authentication/templates/controllers/roles_controller.rb
|
36
|
+
generators/easy_authentication/templates/controllers/user_password_controller.rb
|
37
|
+
generators/easy_authentication/templates/controllers/users_controller.rb
|
38
|
+
generators/easy_authentication/templates/locales/en.easy_authentication.yml
|
39
|
+
generators/easy_authentication/templates/locales/es-MX.easy_authentication.yml
|
40
|
+
generators/easy_authentication/templates/layouts/easy_authentication_login.erb
|
41
|
+
generators/easy_authentication/templates/layouts/easy_authentication.erb
|
42
|
+
generators/easy_authentication/easy_authentication_generator.rb
|
43
|
+
test/test_helper.rb
|
44
|
+
test/easy_authentication_test.rb
|
45
|
+
Rakefile
|
46
|
+
init.rb
|
47
|
+
lib/user_methods.rb
|
48
|
+
lib/password_authentication.rb
|
49
|
+
lib/helper_methods.rb
|
50
|
+
lib/controller_methods.rb
|
51
|
+
lib/cookie_authentication.rb
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('easy_authentication', '0.
|
5
|
+
Echoe.new('easy_authentication', '1.0.0') do |e|
|
6
6
|
e.description = "Easy Role Authentication for Ruby on Rails 2.2 (i18n)"
|
7
7
|
e.url = "http://github.com/innetra/easy_authentication"
|
8
8
|
e.author = "Ivan Torres"
|
data/easy_authentication.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{easy_authentication}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "1.0.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ivan Torres"]
|
9
|
-
s.date = %q{2009-01-
|
9
|
+
s.date = %q{2009-01-23}
|
10
10
|
s.description = %q{Easy Role Authentication for Ruby on Rails 2.2 (i18n)}
|
11
11
|
s.email = %q{mexpolk@gmail.com}
|
12
12
|
s.extra_rdoc_files = ["tasks/sysadmin.rake", "tasks/rights.rake", "lib/user_methods.rb", "lib/password_authentication.rb", "lib/helper_methods.rb", "lib/controller_methods.rb", "lib/cookie_authentication.rb"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: innetra-easy_authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Torres
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-01-
|
12
|
+
date: 2009-01-23 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|