public
Description: A Rails plugin that adds the ability to automatically stamp each record with the currently logged in user.
Homepage:
Clone URL: git://github.com/jnunemaker/user_stamp.git
Click here to lend your support to: user_stamp and make a donation at www.pledgie.com !
user_stamp / install.rb
100644 15 lines (10 sloc) 0.267 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
instructions = <<EOF
 
#{'*' * 62}
Don't forget to add user stamp to your application controller.
class ApplicationController < ActionController::Base
user_stamp Post, Asset, Job
end
 
View the README for more information.
#{'*' * 62}
 
EOF
 
puts instructions