initial import

This commit is contained in:
2009-12-10 20:45:56 +02:00
commit 14f518ce91
44 changed files with 1867 additions and 0 deletions

17
init/actions/activate.rb Normal file
View File

@@ -0,0 +1,17 @@
class ActivateAction < Action
def default
puts "please specify project"
end
def method_missing(project, *args)
Projects.send(project).activate(*args)
Action.perms :ensure
end
def all
Projects.activate
Action.perms :ensure
end
end