rustimate 0.1.0

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Rustimate < Formula
  version 'v0.0.40'
  desc "A work in progress."
  homepage "https://github.com/kyleu/rustimate"

  if OS.mac?
      url "https://github.com/kyleu/rustimate/releases/download/#{version}/rustimate-#{version}-x86_64-apple-darwin.tar.gz"
      sha256 "e06290a647306d92f1a20c9903060814f6938099a08437b929b32c256aa1dc2c"
  elsif OS.linux?
      url "https://github.com/kyleu/rustimate/releases/download/#{version}/rustimate-#{version}-x86_64-unknown-linux-gnu.tar.gz"
      sha256 "b630ba7bb62902866a0252c4187188d92c67ae2ac92468d3a2d418d680e25364"
  end

  def install
    bin.install "rustimate"
  end
end