Method: Integrity::Project#build
- Defined in:
- lib/integrity/project.rb
#build(commit_identifier = "HEAD") ⇒ Object
30 31 32 33 34 35 |
# File 'lib/integrity/project.rb', line 30 def build(commit_identifier="HEAD") commit_identifier = head_of_remote_repo if commit_identifier == "HEAD" commit = find_or_create_commit_with_identifier(commit_identifier) Build.queue(commit) end |