densha 0.1.5

Next.js-like web application framework built with Kotoba
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Densha < Formula
  desc "Next.js-like web application framework built with Kotoba"
  homepage "https://github.com/jun784/densha"
  license "MIT"
  head "https://github.com/jun784/densha.git", branch: "main"

  depends_on "rust" => :build

  def install
    system "cargo", "install", *std_cargo_args
  end

  test do
    assert_match "densha", shell_output("#{bin}/densha --version")
  end
end