diff --git a/cargo-nightly.rb b/cargo-nightly.rb deleted file mode 100644 index 01eccff..0000000 --- a/cargo-nightly.rb +++ /dev/null @@ -1,16 +0,0 @@ -require 'formula' - -class CargoNightly < Formula - homepage 'http://crates.io/' - head 'http://static.rust-lang.org/cargo-dist/cargo-nightly-x86_64-apple-darwin.tar.gz' - - # depends_on 'rust-nightly' - - def install - system "./install.sh", "--prefix=#{prefix}" - end - - test do - system "#{bin}/cargo" - end -end diff --git a/rust-nightly.rb b/rust-nightly.rb deleted file mode 100644 index 02a5bf6..0000000 --- a/rust-nightly.rb +++ /dev/null @@ -1,17 +0,0 @@ -require 'formula' - -class RustNightly < Formula - homepage 'http://www.rust-lang.org/' - head 'http://static.rust-lang.org/dist/rust-nightly-x86_64-apple-darwin.tar.gz' - - conflicts_with 'rust', :because => 'same' - - def install - system "./install.sh", "--prefix=#{prefix}" - end - - test do - system "#{bin}/rustc" - system "#{bin}/rustdoc", "-h" - end -end