-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,16 +19,17 @@ do | |
"Install WeKan dependencies") | ||
if [[ "$OSTYPE" == "linux-gnu" ]]; then | ||
echo "Linux"; | ||
sudo apt -y install build-essential ruby-full ruby-dev libyaml-dev sqlitebrowser | ||
sudo apt -y install build-essential ruby-full ruby-dev libyaml-dev sqlitebrowser nano | ||
sudo gem install bundler -v 2.4.22 | ||
sudo gem install rails | ||
sudo gem update | ||
sudo bundle update | ||
sudo bundle install | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
echo "macOS"; | ||
brew install [email protected] sqlite sqlite-utils db-browser-for-sqlite libyaml | ||
gem install bundler -v 2.4.22 | ||
brew install [email protected] sqlite sqlite-utils db-browser-for-sqlite libyaml nano | ||
gem uninstall bundler | ||
gem install bundler | ||
gem install rails | ||
gem update | ||
bundle update | ||
|