first commit

This commit is contained in:
Blake Ridgway 2020-09-11 22:12:49 -05:00
commit e7410994a3
67 changed files with 5154 additions and 0 deletions

17
ruby-install/rbenv-install Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
# Installs rbenv
rbenv install 2.7.1
rbenv global 2.7.1
ruby -v
# Insalls Bundler
gem install bundler
rbenv rehash
# Installs Rails Version 6.
gem install rails -v 6.0.2.2
rbenv rehash