Skip to content

Commit

Permalink
Update documentation for creating OSS projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Palmer committed Sep 25, 2008
1 parent 1c870ba commit 2e47e00
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/lighthouse.rb
Expand Up @@ -82,6 +82,26 @@ class << base
# project = Lighthouse::Project.new(:name => 'Ninja Whammy Jammy')
# project.save
# # => true
#
# Creating an OSS project
#
# project = Lighthouse::Project.new(:name => 'OSS Project')
# project.access = 'oss'
# project.license = 'mit'
# project.save
#
# OSS License Mappings
#
# 'mit' => "MIT License",
# 'apache-2-0' => "Apache License 2.0",
# 'artistic-gpl-2' => "Artistic License/GPLv2",
# 'gpl-2' => "GNU General Public License v2",
# 'gpl-3' => "GNU General Public License v3",
# 'lgpl' => "GNU Lesser General Public License"
# 'mozilla-1-1' => "Mozilla Public License 1.1"
# 'new-bsd' => "New BSD License",
# 'afl-3' => "Academic Free License v. 3.0"

#
# Updating a Project
#
Expand Down

0 comments on commit 2e47e00

Please sign in to comment.