manage gem deps using bundler
This commit is contained in:
parent
e174170a45
commit
920abe6bec
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
*.retry
|
*.retry
|
||||||
|
Gemfile.lock
|
||||||
|
6
Gemfile
Normal file
6
Gemfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
# Install Twitter CLI https://github.com/sferik/t
|
||||||
|
gem 't'
|
||||||
|
gem 'asciidoctor-pdf'
|
||||||
|
#Previously installed using
|
||||||
|
#sudo gem install -n /usr/local/bin asciidoctor-pdf --pre
|
@ -10,8 +10,8 @@ sdk install java 8.0.202-zulu
|
|||||||
# Install dependencies (apps, fonts, ...) with Brew
|
# Install dependencies (apps, fonts, ...) with Brew
|
||||||
brew bundle
|
brew bundle
|
||||||
|
|
||||||
# Install asciidoctor-pdf
|
# Install bundler for managing ruby dependencies and Gemfile
|
||||||
sudo gem install -n /usr/local/bin asciidoctor-pdf --pre
|
sudo gem install bundler
|
||||||
|
|
||||||
# Install Oh My Zsh and some cool dependencies
|
# Install Oh My Zsh and some cool dependencies
|
||||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
||||||
|
@ -3,8 +3,9 @@ brew update
|
|||||||
#brew upgrade
|
#brew upgrade
|
||||||
brew outdated | xargs brew upgrade
|
brew outdated | xargs brew upgrade
|
||||||
|
|
||||||
gem update --system
|
bundle update --all
|
||||||
gem update asciidoctor-pdf
|
#gem update --system
|
||||||
|
#gem update asciidoctor-pdf t
|
||||||
upgrade_oh_my_zsh
|
upgrade_oh_my_zsh
|
||||||
npm update -g jira-node-cli --save
|
npm update -g jira-node-cli --save
|
||||||
sudo pip install --upgrade pip
|
sudo pip install --upgrade pip
|
||||||
|
Loading…
Reference in New Issue
Block a user