radicaldesigns-restful-authentication 1.1.1
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/Rakefile +10 -0
- metadata +116 -0
data/Rakefile
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
|
5
|
+
|
6
|
+
require 'rake'
|
7
|
+
require 'rake/testtask'
|
8
|
+
require 'rake/rdoctask'
|
9
|
+
|
10
|
+
require 'tasks/rails'
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: radicaldesigns-restful-authentication
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- RailsJedi
|
8
|
+
- Rick Olson
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2008-07-04 00:00:00 -07:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rails
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.1.0
|
25
|
+
version:
|
26
|
+
description: This widely-used plugin provides a foundation for securely managing user.
|
27
|
+
email: railsjedi@gmail.com
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files:
|
33
|
+
- README.textile
|
34
|
+
files:
|
35
|
+
- CHANGELOG
|
36
|
+
- README.textile
|
37
|
+
- Rakefile
|
38
|
+
- TODO
|
39
|
+
- generators/authenticated/authenticated_generator.rb
|
40
|
+
- generators/authenticated/lib/insert_routes.rb
|
41
|
+
- generators/authenticated/templates/_model_partial.html.erb
|
42
|
+
- generators/authenticated/templates/activation.erb
|
43
|
+
- generators/authenticated/templates/authenticated_system.rb
|
44
|
+
- generators/authenticated/templates/authenticated_test_helper.rb
|
45
|
+
- generators/authenticated/templates/controller.rb
|
46
|
+
- generators/authenticated/templates/helper.rb
|
47
|
+
- generators/authenticated/templates/login.html.erb
|
48
|
+
- generators/authenticated/templates/mailer.rb
|
49
|
+
- generators/authenticated/templates/migration.rb
|
50
|
+
- generators/authenticated/templates/model.rb
|
51
|
+
- generators/authenticated/templates/model_controller.rb
|
52
|
+
- generators/authenticated/templates/model_helper.rb
|
53
|
+
- generators/authenticated/templates/model_helper_spec.rb
|
54
|
+
- generators/authenticated/templates/observer.rb
|
55
|
+
- generators/authenticated/templates/signup.html.erb
|
56
|
+
- generators/authenticated/templates/signup_notification.erb
|
57
|
+
- generators/authenticated/templates/site_keys.rb
|
58
|
+
- generators/authenticated/templates/spec/controllers/access_control_spec.rb
|
59
|
+
- generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb
|
60
|
+
- generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb
|
61
|
+
- generators/authenticated/templates/spec/controllers/users_controller_spec.rb
|
62
|
+
- generators/authenticated/templates/spec/fixtures/users.yml
|
63
|
+
- generators/authenticated/templates/spec/helpers/users_helper_spec.rb
|
64
|
+
- generators/authenticated/templates/spec/models/user_spec.rb
|
65
|
+
- generators/authenticated/templates/stories/rest_auth_stories.rb
|
66
|
+
- generators/authenticated/templates/stories/rest_auth_stories_helper.rb
|
67
|
+
- generators/authenticated/templates/stories/steps/ra_navigation_steps.rb
|
68
|
+
- generators/authenticated/templates/stories/steps/ra_resource_steps.rb
|
69
|
+
- generators/authenticated/templates/stories/steps/ra_response_steps.rb
|
70
|
+
- generators/authenticated/templates/stories/steps/user_steps.rb
|
71
|
+
- generators/authenticated/templates/stories/users/accounts.story
|
72
|
+
- generators/authenticated/templates/stories/users/sessions.story
|
73
|
+
- generators/authenticated/templates/test/functional_test.rb
|
74
|
+
- generators/authenticated/templates/test/mailer_test.rb
|
75
|
+
- generators/authenticated/templates/test/model_functional_test.rb
|
76
|
+
- generators/authenticated/templates/test/unit_test.rb
|
77
|
+
- generators/authenticated/USAGE
|
78
|
+
- init.rb
|
79
|
+
- lib/authentication/by_cookie_token.rb
|
80
|
+
- lib/authentication/by_password.rb
|
81
|
+
- lib/authentication.rb
|
82
|
+
- lib/authorization/aasm_roles.rb
|
83
|
+
- lib/authorization/stateful_roles.rb
|
84
|
+
- lib/authorization.rb
|
85
|
+
- lib/trustification/email_validation.rb
|
86
|
+
- lib/trustification.rb
|
87
|
+
- rails/init.rb
|
88
|
+
has_rdoc: true
|
89
|
+
homepage: http://github.com/technoweenie/restful-authentication
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options:
|
92
|
+
- --main
|
93
|
+
- README.textile
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: "0"
|
101
|
+
version:
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: "0"
|
107
|
+
version:
|
108
|
+
requirements: []
|
109
|
+
|
110
|
+
rubyforge_project:
|
111
|
+
rubygems_version: 1.2.0
|
112
|
+
signing_key:
|
113
|
+
specification_version: 2
|
114
|
+
summary: Generates code for user login and authentication
|
115
|
+
test_files: []
|
116
|
+
|