diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/jenkins.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb index c20902fdd..bb05ce141 100644 --- a/Library/Formula/jenkins.rb +++ b/Library/Formula/jenkins.rb @@ -1,16 +1,16 @@ -require 'formula' +require "formula" class Jenkins < Formula - homepage 'http://jenkins-ci.org' - url 'http://mirrors.jenkins-ci.org/war/1.574/jenkins.war' - sha1 'e304f84dfde4f6d0134d8bffe933e6f224da4606' + homepage "http://jenkins-ci.org" + url "http://mirrors.jenkins-ci.org/war/1.574/jenkins.war" + sha1 "e304f84dfde4f6d0134d8bffe933e6f224da4606" - head 'https://github.com/jenkinsci/jenkins.git' + head "https://github.com/jenkinsci/jenkins.git" def install if build.head? system "mvn clean install -pl war -am -DskipTests" - libexec.install 'war/target/jenkins.war', '.' + libexec.install "war/target/jenkins.war", "." else libexec.install "jenkins.war" end |
