diff options
| author | Adam Vandenberg | 2014-05-22 12:31:04 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-05-22 12:31:04 -0700 | 
| commit | 53d3a63129c62fc439092e4cb4f0d4379bbde75c (patch) | |
| tree | b3fa7263c8ef1f0abd9664eb5d93ac7bbe05f242 /Library/Formula/elasticsearch.rb | |
| parent | 2aa3327efad71e73bf8cce091b7b9029eee2d603 (diff) | |
| download | homebrew-53d3a63129c62fc439092e4cb4f0d4379bbde75c.tar.bz2 | |
elasticsearch: quotes
Diffstat (limited to 'Library/Formula/elasticsearch.rb')
| -rw-r--r-- | Library/Formula/elasticsearch.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/elasticsearch.rb b/Library/Formula/elasticsearch.rb index 1d0e62f7c..c0493988a 100644 --- a/Library/Formula/elasticsearch.rb +++ b/Library/Formula/elasticsearch.rb @@ -1,13 +1,13 @@ -require 'formula' +require "formula"  class Elasticsearch < Formula -  homepage 'http://www.elasticsearch.org' -  url 'https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.0.tar.gz' -  sha1 'e9d2965751ffc8810be8e78543a24343fac1da5a' +  homepage "http://www.elasticsearch.org" +  url "https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.0.tar.gz" +  sha1 "e9d2965751ffc8810be8e78543a24343fac1da5a"    head do -    url 'https://github.com/elasticsearch/elasticsearch.git' -    depends_on 'maven' +    url "https://github.com/elasticsearch/elasticsearch.git" +    depends_on "maven"    end    def cluster_name  | 
