Base
Updating a Project
project = Lighthouse::Project.find(44) project.name = "Lighthouse Issues" project.public = false project.save
Finding tickets
project = Lighthouse::Project.find(44) project.tickets
# File lib/lighthouse/project.rb, line 58 def bins(options = {}) Bin.find(:all, :params => options.update(:project_id => id)) end
# File lib/lighthouse/project.rb, line 62 def changesets(options = {}) Changeset.find(:all, :params => options.update(:project_id => id)) end
# File lib/lighthouse/project.rb, line 66 def memberships(options = {}) ProjectMembership.find(:all, :params => options.update(:project_id => id)) end
# File lib/lighthouse/project.rb, line 50 def messages(options = {}) Message.find(:all, :params => options.update(:project_id => id)) end
Generated with the Darkfish Rdoc Generator 2.