Skip to content

Commit fa32ffa

Browse files
committed
update rvm version, ruby version, rails version
1 parent 3f2f1b0 commit fa32ffa

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

rails-install-ubuntu.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,23 @@ curl -sSL https://get.rvm.io | bash -s stable
2727
source ~/.rvm/scripts/rvm
2828

2929
echo "Installs Ruby"
30-
rvm install 2.5.3
31-
rvm use 2.5.3 --default
30+
rvm install 2.6.3
31+
rvm use 2.6.3 --default
3232

3333
echo "gem: --no-ri --no-rdoc" > ~/.gemrc
34-
gem install bundler
3534
gem install rails
3635

3736
echo -e "\n- - - - - -\n"
3837
echo -e "Now we are going to print some information to check that everything is done:\n"
3938

4039

41-
echo -n "Should be sqlite 3.8.1 or higher: sqlite "
40+
echo -n "Should be sqlite 3.22.0 or higher: sqlite "
4241
sqlite3 --version
43-
echo -n "Should be rvm 1.26.11 or higher: "
42+
echo -n "Should be rvm 1.29.8 or higher: "
4443
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-11
45-
echo -n "Should be ruby 2.5.3: "
44+
echo -n "Should be ruby 2.6.3: "
4645
ruby -v | cut -d " " -f 2
47-
echo -n "Should be Rails 4.2.1 or higher: "
46+
echo -n "Should be Rails 5.2.3 or higher: "
4847
rails -v
4948
echo -e "\n- - - - - -\n"
5049

0 commit comments

Comments
 (0)