File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed
Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 11class GetApp < Formula
2- desc "render a random joke about Chuck Norris "
2+ desc "Get app from app store connect "
33 homepage "https://github.com/dikako/homebrew-app-store-connect"
44 version "1.0.0"
55
6- url "https://github.com/dikako/homebrew-app-store-connect/archive/refs/tags/1.1 .zip" , :using => :curl
6+ url "https://github.com/dikako/homebrew-app-store-connect/archive/refs/tags/1.2 .zip" , :using => :curl
77
88 def install
9+ # Install rbenv
10+ system "brew" , "install" , "rbenv"
11+
12+ # Set up rbenv
13+ system "rbenv" , "init" , "-"
14+
15+ # Install a specific version of Ruby using rbenv
16+ system "rbenv" , "install" , "3.0.0" # Replace with the desired Ruby version
17+
18+ # Set the global Ruby version
19+ system "rbenv" , "global" , "3.0.0" # Make sure to use the same Ruby version as above
20+
21+ # Install a required gem using the system's Ruby
22+ system "gem" , "install" , "bundler"
23+
24+ # Install dependencies
25+ system "bundle" , "install"
26+
927 bin . install "bin/get_app"
1028 end
1129end
You can’t perform that action at this time.
0 commit comments