public
Description: Droping user authentication for merb
Clone URL: git://github.com/BrianTheCoder/can_has_auth.git
adding gemspec
William Smith (author)
Mon May 12 14:36:23 -0700 2008
commit  1248a5d56e279e594d41b5e1d81e47279cf24e4c
tree    0a0ce5d494e4847dad3b5f84fc38daae29f451c5
parent  24a9a4b4a5e8f2db90eb493add75f7c444030e88
...
1
2
3
4
5
6
7
...
14
15
16
17
 
18
19
 
20
21
22
23
24
25
26
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
29
30
31
32
33
34
35
36
37
38
39
40
...
 
1
2
 
3
4
5
...
12
13
14
 
15
16
17
18
19
20
21
22
 
 
 
 
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
 
 
 
 
 
 
 
0
@@ -1,7 +1,5 @@
0
-History.txt
0
 License.txt
0
 Manifest.txt
0
-PostInstall.txt
0
 README.txt
0
 Rakefile
0
 config/hoe.rb
0
@@ -14,27 +12,32 @@ lib/can_has_auth/controllers/session.rb
0
 lib/can_has_auth/controllers/password.rb
0
 lib/can_has_auth/auth_model.rb
0
 lib/can_has_auth/auth_controller.rb
0
-lib/can_has_auth/controllers/user_mailer.rb
0
+lib/can_has_auth/mailers/user_mailer.rb
0
 lib/can_has_auth/views/session/new.html.erb
0
 lib/can_has_auth/views/users/new.html.erb
0
+lib/can_has_auth/views/users/activate.html.erb
0
 lib/can_has_auth/views/password/new.html.erb
0
 lib/can_has_auth/views/password/edit.html.erb
0
 lib/can_has_auth/views/password/reset.html.erb
0
 lib/can_has_auth/views/users/activate.html.erb
0
-lib/can_has_auth/views/user_mailer/signup_notification.html.erb
0
-lib/can_has_auth/views/user_mailer/signup_notification.text.erb
0
-lib/can_has_auth/views/user_mailer/activation_notification.html.erb
0
-lib/can_has_auth/views/user_mailer/activation_notification.text.erb
0
+lib/can_has_auth/mailers/views/user_mailer/signup.html.erb
0
+lib/can_has_auth/mailers/views/user_mailer/signup.text.erb
0
+lib/can_has_auth/mailers/views/user_mailer/activation.html.erb
0
+lib/can_has_auth/mailers/views/user_mailer/activation.text.erb
0
+lib/can_has_auth/mailers/views/user_mailer/reset_password.html.erb
0
+lib/can_has_auth/mailers/views/user_mailer/reset_password.text.erb
0
+lib/can_has_auth/mailers/views/user_mailer/forgot_password.html.erb
0
+lib/can_has_auth/mailers/views/user_mailer/forgot_password.text.erb
0
+spec/application.rb
0
+spec/authenticated_system_spec_helper.rb
0
+spec/spec_helper.rb
0
+spec/user_spec_helper.rb
0
+spec/controllers/password_spec.rb
0
+spec/controllers/users_spec.rb
0
+spec/controllers/session_spec.rb
0
+spec/models/user_spec.rb
0
 script/console
0
 script/destroy
0
 script/generate
0
 script/txt2html
0
 setup.rb
0
-tasks/deployment.rake
0
-tasks/environment.rake
0
-tasks/website.rake
0
-website/index.html
0
-website/index.txt
0
-website/javascripts/rounded_corners_lite.inc.js
0
-website/stylesheets/screen.css
0
-website/template.html.erb
...
40
41
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
44
...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
0
@@ -40,4 +40,18 @@ if defined?(Merb::Plugins)
0
     end
0
     Application.send(:include, AuthController)
0
   end
0
+end
0
+
0
+class DateTime
0
+ def to_time
0
+ Time.parse(self.to_s)
0
+ end
0
+
0
+ def to_i
0
+ to_time.to_i
0
+ end
0
+
0
+ def gmtime
0
+ self.to_time.gmtime
0
+ end
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.