Skip to content

Commit f436249

Browse files
committed
Updates installation scripts to install latest Ruby in 1.9.3 branch
1 parent b622981 commit f436249

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

rails-install-fedora.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ curl -L get.rvm.io | bash -s stable
1717
source ~/.rvm/scripts/rvm
1818

1919
echo "Installs Ruby"
20-
rvm install 1.9.3-p392
21-
rvm use 1.9.3-p392 --default
20+
rvm install 1.9.3-p547
21+
rvm use 1.9.3-p547 --default
2222

2323
gem install bundler --no-rdoc --no-ri
2424
gem install rails --no-rdoc --no-ri
@@ -36,7 +36,7 @@ echo -n "Should be sqlite 3.7.3 or higher: sqlite "
3636
sqlite3 --version
3737
echo -n "Should be rvm 1.6.32 or higher: "
3838
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10 | xargs echo
39-
echo -n "Should be ruby 1.9.3-p392: "
39+
echo -n "Should be ruby 1.9.3-p547: "
4040
ruby -v | cut -d " " -f 2
4141
echo -n "Should be Rails 3.2.2 or higher: "
4242
rails -v

rails-install-osx-rvm.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ curl -kL get.rvm.io | bash -s stable
1515
source ~/.rvm/scripts/rvm
1616

1717
echo "Install Ruby"
18-
rvm install 1.9.3-p194
19-
rvm use 1.9.3-p194 --default
18+
rvm install 1.9.3-p547
19+
rvm use 1.9.3-p547 --default
2020

2121
gem install bundler --no-rdoc --no-ri
2222
gem install rails --no-rdoc --no-ri
@@ -32,7 +32,7 @@ echo -n "Should be sqlite 3.7.3 or higher: sqlite "
3232
sqlite3 --version
3333
echo -n "Should be rvm 1.6.32 or higher: "
3434
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10
35-
echo -n "Should be ruby 1.9.3-p194: "
35+
echo -n "Should be ruby 1.9.3-p547: "
3636
ruby -v | cut -d " " -f 2
3737
echo -n "Should be Rails 3.2.2 or higher: "
3838
rails -v

rails-install-ubuntu.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ curl -L get.rvm.io | bash -s stable
1616
source ~/.rvm/scripts/rvm
1717

1818
echo "Installs Ruby"
19-
rvm install 1.9.3-p194
20-
rvm use 1.9.3-p194 --default
19+
rvm install 1.9.3-p547
20+
rvm use 1.9.3-p547 --default
2121

2222
gem install bundler --no-rdoc --no-ri
2323
gem install rails --no-rdoc --no-ri
@@ -33,7 +33,7 @@ echo -n "Should be sqlite 3.7.3 or higher: sqlite "
3333
sqlite3 --version
3434
echo -n "Should be rvm 1.6.32 or higher: "
3535
rvm --version | sed '/^.*$/N;s/\n//g' | cut -c 1-10
36-
echo -n "Should be ruby 1.9.3-p194: "
36+
echo -n "Should be ruby 1.9.3-p547: "
3737
ruby -v | cut -d " " -f 2
3838
echo -n "Should be Rails 3.2.2 or higher: "
3939
rails -v

0 commit comments

Comments
 (0)