diff options
author | Teddy Wing | 2021-05-23 20:52:52 +0200 |
---|---|---|
committer | Teddy Wing | 2021-05-23 20:52:52 +0200 |
commit | e83dfae779d525bb2428a66da9989641e3f909a1 (patch) | |
tree | 316ad926db59eba9e3908e7425a8aa4430534c4a | |
parent | 9e99d203dab2ab9fbadbbd431984f2142d147c6b (diff) | |
download | homebrew-formulae-e83dfae779d525bb2428a66da9989641e3f909a1.tar.bz2 |
google-calendar-rsvp 0.0.1
-rw-r--r-- | HomebrewFormula/google-calendar-rsvp.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/HomebrewFormula/google-calendar-rsvp.rb b/HomebrewFormula/google-calendar-rsvp.rb new file mode 100644 index 0000000..b15ae9d --- /dev/null +++ b/HomebrewFormula/google-calendar-rsvp.rb @@ -0,0 +1,19 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + +class GoogleCalendarRsvp < Formula + desc "RSVP to Google Calendar events from the command line" + homepage "https://github.com/teddywing/google-calendar-rsvp" + url "https://github.com/teddywing/google-calendar-rsvp/releases/download/v0.0.1/google-calendar-rsvp_0.0.1_x86_64-apple-darwin.tar.bz2" + sha256 "cd7363c8cf2adfda30e90000817f1974e86995a9dd29091dc34d44474c999a7b" + + def install + bin.install Dir["bin/*"] + man1.install Dir["share/man/man1/*"] + end + + test do + assert_equal version, shell_output("google-calendar-rsvp --version").strip + end +end |