aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2014-05-19 22:56:40 -0700
committerBrett Koonce2014-05-20 00:04:36 -0700
commit2ba1071619d692cf363e37675c36136d8395e82e (patch)
tree93ab87ef933000c340c8396bebc1fe215c1ee72b /Library
parent0d10c3f8cd7b4ed621d0f386e119ffea75d8e3c5 (diff)
downloadhomebrew-2ba1071619d692cf363e37675c36136d8395e82e.tar.bz2
wry 1.7.3
Closes #29422.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/wry.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/wry.rb b/Library/Formula/wry.rb
index 2441d7c32..50781fc0e 100644
--- a/Library/Formula/wry.rb
+++ b/Library/Formula/wry.rb
@@ -1,17 +1,17 @@
-require 'formula'
+require "formula"
class Wry < Formula
- homepage 'http://grailbox.com/wry/'
- url 'https://github.com/hoop33/wry/archive/v1.7.2.tar.gz'
- sha1 '22ac510f0f83bcdc7432ec4fac8aabdf91685ec5'
+ homepage "http://grailbox.com/wry/"
+ url "https://github.com/hoop33/wry/archive/v1.7.3.tar.gz"
+ sha1 "e4fdde7ffcaa2bdaf35a9b9147f8c2da24c65e71"
- head 'https://github.com/hoop33/wry.git'
+ head "https://github.com/hoop33/wry.git"
depends_on :macos => :lion
depends_on :xcode
def install
xcodebuild "-target", "wry", "-configuration", "Release", "SYMROOT=build", "OBJROOT=objroot"
- bin.install 'build/Release/wry'
+ bin.install "build/Release/wry"
end
end