Skip to content

Commit

Permalink
https AAAAARRRRRGGGGGGHHHHHHHHHHHHHHH
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Apr 8, 2011
1 parent 6ebc239 commit fc00476
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ Hoe.spec "rvm" do
In order to install RVM please use one of the methods listed in the
documentation:
http://rvm.beginrescueend.com/rvm/install/
https://rvm.beginrescueend.com/rvm/install/
such as,
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-latest )
bash < <(curl -s -B https://rvm.beginrescueend.com/install/rvm)
followed by placing the sourcing line in your ~/.bash_profile or wherever may
be appropriate for your setup (example, .zshenv, /etc/profile, ...):
Expand All @@ -44,7 +44,7 @@ Hoe.spec "rvm" do
first Ruby. You can read more details about this process on the above
mentioned install page as well as the basics page:
http://rvm.beginrescueend.com/rvm/basics/
https://rvm.beginrescueend.com/rvm/basics/
Enjoy!
Expand Down
2 changes: 1 addition & 1 deletion binscripts/rvm-installer
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export PS4="+ \${BASH_SOURCE##\${rvm_path:-}} : \${FUNCNAME[0]:+\${FUNCNAME[0]}(

rvm_src_path="$rvm_path/src"
rvm_archives_path="$rvm_path/archives"
rvm_releases_url="http://rvm.beginrescueend.com/releases"
rvm_releases_url="https://rvm.beginrescueend.com/releases"
rvm_prefix="$(dirname $rvm_path)/"

for dir in "$rvm_src_path" "$rvm_archives_path" ; do
Expand Down
16 changes: 8 additions & 8 deletions contrib/bootstrap_rails_environment
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if ! abort ; then

printf "=> Installing Git (git command not found)"

curl -L http://rvm.beginrescueend.com/install/git -o gitinstall
curl -s -L -B https://rvm.beginrescueend.com/install/git -o gitinstall

chmod +x "$PWD/gitinstall"

Expand All @@ -83,9 +83,9 @@ if ! abort ; then

fi

printf "=> Installing RVM the Ruby enVironment Manager\n http://rvm.beginrescueend.com/rvm/install/\n"
printf "=> Installing RVM the Ruby enVironment Manager\n https://rvm.beginrescueend.com/rvm/install/\n"

curl -O -L http://rvm.beginrescueend.com/releases/rvm-install-head
curl -s -O -L -B https://rvm.beginrescueend.com/releases/rvm-install-head

chmod +x rvm-install-head

Expand All @@ -100,27 +100,27 @@ if ! abort ; then

source ~/.rvm/scripts/rvm

printf "=> Installing Ruby 1.8.7\n More information about installing rubies can be found at http://rvm.beginrescueend.com/rubies/installing/"
printf "=> Installing Ruby 1.8.7\n More information about installing rubies can be found at https://rvm.beginrescueend.com/rubies/installing/"

rvm install $ruby_version

printf "=> Using 1.8.7 and setting it as default for new shells\n More information about Rubies can be found at http://rvm.beginrescueend.com/rubies/default/\n"
printf "=> Using 1.8.7 and setting it as default for new shells\n More information about Rubies can be found at https://rvm.beginrescueend.com/rubies/default/\n"

rvm use $ruby_version --default

printf "=> Installing Rails 3 to the default gemset.\n More information about gemsets can be found at http://rvm.beginrescueend.com/gemsets/\n"
printf "=> Installing Rails 3 to the default gemset.\n More information about gemsets can be found at https://rvm.beginrescueend.com/gemsets/\n"

gem install rails --no-rdoc --no-ri

printf "=> Installing Bundler to the global gemset.\n http://rvm.beginrescueend.com/gemsets/global/\n"
printf "=> Installing Bundler to the global gemset.\n https://rvm.beginrescueend.com/gemsets/global/\n"

rvm gemset use global

gem install bundler --no-rdoc --no-ri

rvm gemset clear

printf "=> Installing the sqlite3 Gem.\n http://rubydoc.info/gems/sqlite3/1.3.3/frames\n"
printf "=> Installing the sqlite3 Gem.\n https://rubydoc.info/gems/sqlite3/1.3.3/frames\n"

gem install sqlite3 --no-rdoc --no-ri

Expand Down
2 changes: 1 addition & 1 deletion lib/rvm.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# == Ruby Version Manager - Ruby API
#
# Provides a wrapper around the command line api implemented as part of the api.
# If you're not familiar with rvm, please read http://rvm.beginrescueend.com/
# If you're not familiar with rvm, please read https://rvm.beginrescueend.com/
# first.
#
# == Usage
Expand Down
2 changes: 1 addition & 1 deletion scripts/functions/installer
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ print_install_header()
{
printf "
RVM: Shell scripts enabling management of multiple ruby environments.
RTFM: http://rvm.beginrescueend.com/
RTFM: https://rvm.beginrescueend.com/
HELP: http://webchat.freenode.net/?channels=rvm (#rvm on irc.freenode.net)
"

Expand Down
8 changes: 4 additions & 4 deletions scripts/get
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ get_latest()
{
local version_url stable_version archive

version_url="http://rvm.beginrescueend.com/releases/stable-version.txt"
version_url="https://rvm.beginrescueend.com/releases/stable-version.txt"

stable_version=$(curl -s $version_url)
stable_version=$(curl -s -B $version_url)

rvm_log "\nOriginal installed RVM version:"
(__rvm_version)
Expand All @@ -37,13 +37,13 @@ get_version()
{
version="$1"

md5=$(curl -B http://rvm.beginrescueend.com/releases/rvm-${version}.tar.gz.md5 2>/dev/null)
md5=$(curl -s -B https://rvm.beginrescueend.com/releases/rvm-${version}.tar.gz.md5 2>/dev/null)

echo "rvm-${version}"

archive="$rvm_archives_path/rvm-${version}.tar.gz"

curl -L "http://rvm.beginrescueend.com/releases/rvm-${version}.tar.gz" \
curl -L "https://rvm.beginrescueend.com/releases/rvm-${version}.tar.gz" \
-o "$archive"
case "$(uname)" in
Darwin|FreeBSD)
Expand Down
2 changes: 1 addition & 1 deletion scripts/help
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ else
rvm_log "Commands available with 'rvm help':\n\n $(builtin cd "${rvm_help_path}" ; find . -maxdepth 1 -mindepth 1 -type f -print | \tr "\n" ' ' | sed -e 's#./##g')"
fi

rvm_log "For additional information please visit RVM's documentation website:\n\n http://rvm.beginrescueend.com/"
rvm_log "For additional information please visit RVM's documentation website:\n\n https://rvm.beginrescueend.com/"

rvm_log "If you still cannot find what an answer to your question, find me 'wayneeseguin' in #rvm on irc.freenode.net:\n\n http://webchat.freenode.net/?channels=rvm\n"

Expand Down
2 changes: 1 addition & 1 deletion scripts/irbrc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
end

rescue LoadError
puts "Readline was unable to be required, if you need completion or history install readline then reinstall the ruby.\nYou may follow 'rvm notes' for dependencies and/or read the docs page http://rvm.beginrescueend.com/packages/readline/ . Be sure you 'rvm remove X ; rvm install X' to re-compile your ruby with readline support after obtaining the readline libraries."
puts "Readline was unable to be required, if you need completion or history install readline then reinstall the ruby.\nYou may follow 'rvm notes' for dependencies and/or read the docs page https://rvm.beginrescueend.com/packages/readline/ . Be sure you 'rvm remove X ; rvm install X' to re-compile your ruby with readline support after obtaining the readline libraries."
end

# Calculate the ruby string.
Expand Down
2 changes: 1 addition & 1 deletion scripts/rtfm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

rvm_url="http://rvm.beginrescueend.com/"
rvm_url="https://rvm.beginrescueend.com/"

source "$rvm_path/functions/logging"

Expand Down
4 changes: 2 additions & 2 deletions scripts/rvm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

# rvm : Ruby enVironment Manager
# http://rvm.beginrescueend.com
# http://github.com/wayneeseguin/rvm
# https://rvm.beginrescueend.com
# https://github.com/wayneeseguin/rvm

# Is RVM loaded as a shell function already?

Expand Down
2 changes: 1 addition & 1 deletion scripts/version
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ __rvm_meta()
{
rvm_meta_author="Wayne E. Seguin"
rvm_meta_author_email="wayneeseguin@gmail.com"
rvm_meta_website="http://rvm.beginrescueend.com/"
rvm_meta_website="https://rvm.beginrescueend.com/"
rvm_meta_version="${rvm_version}"
}

Expand Down

3 comments on commit fc00476

@corroded
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not use a domain_url global variable(is it possible?) so you don't have to change a lot of stuff for this? just a suggestion :)

@wayneeseguin
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good suggestion, would you be willing to hack that in?

@corroded
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can try although I'm not actually a shell scripter. I'll see if I can submit a pull request this weekend for you to review

Please sign in to comment.