aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-06-15 14:48:24 -0700
committerAdam Vandenberg2014-06-15 14:48:24 -0700
commiteadd2b874928b8da02aef64efdeedb804d402be9 (patch)
tree7b24cb91cc622019d5a4bbbb9ed0306e06e2ae90 /Library/Formula
parent2d448c333a485eab19ae285d2e08a4937d642953 (diff)
downloadhomebrew-eadd2b874928b8da02aef64efdeedb804d402be9.tar.bz2
crash 1.3.0
Closes #30119.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/crash.rb30
1 files changed, 9 insertions, 21 deletions
diff --git a/Library/Formula/crash.rb b/Library/Formula/crash.rb
index a36ffff27..7db17eb34 100644
--- a/Library/Formula/crash.rb
+++ b/Library/Formula/crash.rb
@@ -1,30 +1,18 @@
-require 'formula'
+require "formula"
class Crash < Formula
- homepage 'http://www.crashub.org/'
- url 'http://search.maven.org/remotecontent?filepath=org/crsh/crsh.distrib/1.2.9/crsh.distrib-1.2.9.tar.gz'
- sha1 '7e0f066ea398e76bdabe0ed715a4ac188597c4f4'
+ homepage "http://www.crashub.org/"
+ url "http://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.0/crash.distrib-1.3.0.tar.gz"
+ sha1 "77ffc46cfead3ac6bb757830661e500f0c1b7a2a"
- devel do
- url 'http://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.0-cr1/crash.distrib-1.3.0-cr1.tar.gz'
- version '1.3.0-cr1'
- sha1 '18786ae6a427b0630541b0cab7ec01c340e50bea'
-
- resource 'docs' do
- url 'http://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.0-cr1/crash.distrib-1.3.0-cr1-docs.tar.gz'
- version '1.3.0-cr1'
- sha1 '2cb3baeafaeda4a5a4e6d0d8c0a6d28db1ba7636'
- end
- end
-
- resource 'docs' do
- url 'http://search.maven.org/remotecontent?filepath=org/crsh/crsh.distrib/1.2.9/crsh.distrib-1.2.9-docs.tar.gz'
- sha1 '134ebdb9b77f0916f73101154ea475e49ca57fe3'
+ resource "docs" do
+ url "http://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.0/crash.distrib-1.3.0-docs.tar.gz"
+ sha1 "6386cf9d54c7463dcbad61d27fea6ce46ba409b5"
end
def install
- doc.install resource('docs')
- libexec.install Dir['crash/*']
+ doc.install resource("docs")
+ libexec.install Dir["crash/*"]
bin.install_symlink "#{libexec}/bin/crash.sh"
end
end