From 544cfa3c6b95cbe1f5747bac20467bd3b16d5336 Mon Sep 17 00:00:00 2001
From: Bruno Lemos
Date: Sat, 23 Feb 2019 00:36:10 -0300
Subject: [PATCH 1/2] Setup auto homebrew tap on release
Fix #78
Fix #91
https://github.com/toolmantim/tap-release
https://github.com/devhubapp/homebrew-devhub
---
.github/tap-release.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 .github/tap-release.yml
diff --git a/.github/tap-release.yml b/.github/tap-release.yml
new file mode 100644
index 00000000..1ceafc8a
--- /dev/null
+++ b/.github/tap-release.yml
@@ -0,0 +1,19 @@
+asset: DevHub-$STABLE_VERSION_NUMBER.dmg
+tap: devhubapp/homebrew-devhub/devhub.rb
+template: >
+ class App < Formula
+ app "DevHub.app"
+ name "DevHub"
+ desc "$REPO_DESCRIPTION"
+ homepage "$REPO_WEBITE"
+ version "$STABLE_VERSION"
+ url "$STABLE_ASSET_URL"
+ sha256 "$STABLE_ASSET_SHA256"
+
+ appcast "https://github.com/devhubapp/devhub/releases.atom"
+ auto_updates true
+
+ def install
+ prefix.install "devhub"
+ end
+ end
\ No newline at end of file
From 7e13b7d84f72ad4f8ed4b855620bb6b5045afa23 Mon Sep 17 00:00:00 2001
From: Bruno Lemos
Date: Sat, 23 Feb 2019 00:42:13 -0300
Subject: [PATCH 2/2] Add installation instructions for homebrew
Fix #78
Fix #91
---
README.md | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index 4149a97e..35d78cbb 100644
--- a/README.md
+++ b/README.md
@@ -19,14 +19,22 @@
-## Installation on macOS using Homebrew
+
-Devhub can be installed on macOS using Homebrew using the following commands:
+## Download links
-```bash
-brew tap devhubapp/devhub
-brew cask install devhub
-```
+- Web: [devhubapp.com](https://devhubapp.com/)
+- Android: [Play Store](https://play.google.com/store/apps/details?id=com.devhubapp&utm_source=github_repo_link)
+- iOS: [App Store](https://itunes.apple.com/us/app/devhub-for-github/id1191864199?l=en&mt=8&utm_source=github_repo_link)
+- Desktop:
+ - [GitHub Releases](https://github.com/devhubapp/devhub/releases)
+ - Homebrew (macOS):
+ ```
+ brew tap devhubapp/devhub
+ brew cask install devhub
+ ```
+
+
## Why
@@ -165,6 +173,7 @@ Alternatively, you can contribute using Gitpod, a free online dev environment fo
> When using a third party service, your tokens may be less secured.
+
## Author
Follow me on Twitter: [@brunolemos](https://twitter.com/brunolemos)