public
Description: Acts As Licensed is a plugin which provides a basic content licensing system to community centred Ruby On Rails applications. The plugin includes a set of Creative Commons New Zealand and Australian licenses, which can be imported (excluding the No Derivative Works variant).
Homepage:
Clone URL: git://github.com/kete/acts_as_licensed.git
KieranP (author)
Thu May 07 18:42:55 -0700 2009
commit  aa6639d7447e36d3f51eafe2f9ec34b068f46604
tree    d0216bf43a72a292d833e5e5da0d821fed205c4f
parent  6bfcd6e0fdfb2d08873fba11e3f7a3d6e4e48922
acts_as_licensed / install.rb
100644 11 lines (11 sloc) 0.462 kb
1
2
3
4
5
6
7
8
9
10
11
puts
puts " ActsAsLicensed has been successfully installed."
puts " To complete configuration, generate the License table schema using "
puts " the following commands:"
puts " ./script/generate acts_as_licensed_migration"
puts " rake db:migrate"
puts
puts " You can also import a set of Creative Commons New Zealand licenses "
puts " (excluding No Derivate Works variants) using the following command:"
puts " rake acts_as_licensed:import_nz_cc_licenses"
puts