class Grails < Formula desc "Web application framework for the Groovy language" homepage "https://grails.org" url "https://github.com/grails/grails-core/releases/download/v3.2.3/grails-3.2.3.zip" sha256 "1770d6e16cbb9f8f4f41b00ebeaf0bb837343b99bab100fc2fc136e6c46e471b" bottle :unneeded def install rm_f Dir["bin/*.bat", "bin/cygrails", "*.bat"] libexec.install Dir["*"] bin.install_symlink Dir["#{libexec}/bin/*"] end def caveats; <<-EOS.undent The GRAILS_HOME directory is: #{opt_libexec} EOS end test do assert_match "Grails Version: #{version}", shell_output("#{bin}/grails -v") end end