File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,13 @@ echo "Installs ImageMagick for image processing"
12
12
sudo apt-get install imagemagick --fix-missing -y
13
13
14
14
echo " Installs RVM (Ruby Version Manager) for handling Ruby installation"
15
- curl -L get.rvm.io | bash -s stable
15
+ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
16
+ curl -sSL https://get.rvm.io | bash -s -- --version 1.26.11
16
17
source ~ /.rvm/scripts/rvm
17
18
18
19
echo " Installs Ruby"
19
- rvm install 1.9.3-p547
20
- rvm use 1.9.3-p547 --default
20
+ rvm install 2.2.1
21
+ rvm use 2.2.1 --default
21
22
22
23
gem install bundler --no-rdoc --no-ri
23
24
gem install rails --no-rdoc --no-ri
@@ -29,13 +30,13 @@ echo -e "Now we are going to print some information to check that everything is
29
30
# echo -n "Should be brew 0.8 or higher: brew "
30
31
# brew -v
31
32
32
- echo -n " Should be sqlite 3.7.3 or higher: sqlite "
33
+ echo -n " Should be sqlite 3.8.1 or higher: sqlite "
33
34
sqlite3 --version
34
- echo -n " Should be rvm 1.6.32 or higher : "
35
+ echo -n " Should be rvm 1.26.11 : "
35
36
rvm --version | sed ' /^.*$/N;s/\n//g' | cut -c 1-10
36
- echo -n " Should be ruby 1.9.3-p547 : "
37
+ echo -n " Should be ruby 2.2.1 : "
37
38
ruby -v | cut -d " " -f 2
38
- echo -n " Should be Rails 3 .2.2 or higher: "
39
+ echo -n " Should be Rails 4 .2.1 or higher: "
39
40
rails -v
40
41
echo -e " \n- - - - - -\n"
41
42
You can’t perform that action at this time.
0 commit comments