public
Fork of DocSavage/rails-authorization-plugin
Description: This plugin provides a flexible way to add authorization to Rails.
Homepage: http://www.writertopia.com/developers/authorization
Clone URL: git://github.com/bwyrosdick/rails-authorization-plugin.git
Re-named README to add .txt extension.  Added some install instructions to 
README.txt
grempe (author)
Mon Feb 18 11:56:54 -0800 2008
commit  6dfe9d43df6519ace2091193cdcdeecbf75a2db5
tree    d29f93ed891054f73b4ba4e3bde73cf2bd4f3e53
parent  20481a3d37082f7188de60edddf1e3b016c12163
...
17
18
19
20
 
21
22
...
17
18
19
 
20
21
22
0
@@ -17,6 +17,6 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
0
   rdoc.rdoc_dir = 'rdoc'
0
   rdoc.title = 'Authorization'
0
   rdoc.options << '--line-numbers' << '--inline-source'
0
- rdoc.rdoc_files.include('README')
0
+ rdoc.rdoc_files.include('README.txt')
0
   rdoc.rdoc_files.include('lib/**/*.rb')
0
 end
...
4
5
6
7
 
8
9
10
...
4
5
6
 
7
8
9
10
0
@@ -4,7 +4,7 @@ ActionController::Base.send( :include, Authorization::Base )
0
 ActionView::Base.send( :include, Authorization::Base::ControllerInstanceMethods )
0
 
0
 # You can perform authorization at varying degrees of complexity.
0
-# Choose a style of authorization below (see README) and the appropriate
0
+# Choose a style of authorization below (see README.txt) and the appropriate
0
 # mixin will be used for your app.
0
 
0
 # When used with the auth_test app, we define this in config/environment.rb
...
1
 
2
...
 
1
2
0
@@ -1,2 +1,2 @@
0
-puts IO.read(File.join(File.dirname(__FILE__), 'README'))
0
+puts IO.read(File.join(File.dirname(__FILE__), 'README.txt'))
0
 

Comments

    No one has commented yet.