diff --git a/Formula/hub.rb b/Formula/hub.rb index 03ead1b111..c6a0c4cfdf 100644 --- a/Formula/hub.rb +++ b/Formula/hub.rb @@ -1,23 +1,17 @@ require 'formula' class Hub 'v0.1.2' + head 'git://github.com/defunkt/hub.git', :tag => 'v0.1.3' homepage 'http://github.com/defunkt/hub' def initialize(*args) super # Force version instead of HEAD - @version = '0.1.2' + @version = '0.1.3' end def install - # standalone task runs tests which fail - # system 'rake standalone' - system %(ruby -Ilib -rhub -e "Hub::Standalone.save('hub')") - system 'rake man' - - bin.install 'hub' - man1.install 'man/hub.1' + system "rake install prefix=#{prefix}" end end