This is Gonzalo Acosta's personal website. This gitpage is powered by Jenkyll which is a tool to create static websites.
- Download and install a Ruby+Devkit version from RubyInstaller Downloads. Use default options for installation.
- Run the ridk install step on the last stage of the installation wizard. This is needed for installing gems with native extensions. You can find additional information regarding this in the RubyInstaller Documentation
- Open a new command prompt window from the start menu, so that changes to the
PATHenvironment variable becomes effective. Install Jekyll and Bundler usinggem install jekyll bundler - Check if Jekyll has been installed properly:
jekyll -v
-
To run the latest Ruby version you need to install it through Homebrew.
# Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # Install Ruby brew install ruby
-
Add the brew ruby and gems path to your shell configuration:
# If you're using Zsh echo 'export PATH="/usr/local/opt/ruby/bin:/usr/local/lib/ruby/gems/3.0.0/bin:$PATH"' >> ~/.zshrc # If you're using Bash echo 'export PATH="/usr/local/opt/ruby/bin:/usr/local/lib/ruby/gems/3.0.0/bin:$PATH"' >> ~/.bash_profile # Unsure which shell you are using? Type echo $SHELL
-
Relaunch your terminal and check your Ruby setup:
which ruby # /usr/local/opt/ruby/bin/ruby ruby -v ruby 3.0.0p0 (2020-12-25 revision 95aff21468)
-
Install the bundler and jekyll gems:
gem install --user-install bundler jekyll
-
Get your Ruby version:
ruby -v ruby 3.0.0p0 (2020-12-25 revision 95aff21468) -
Append your path file with the following, replacing the
X.Xwith the first two digits of your Ruby version:# If you're using Zsh echo 'export PATH="$HOME/.gem/ruby/X.X.0/bin:$PATH"' >> ~/.zshrc # If you're using Bash echo 'export PATH="$HOME/.gem/ruby/X.X.0/bin:$PATH"' >> ~/.bash_profile # Unsure which shell you are using? Type echo $SHELL
-
Check that
GEM PATHS:points to your home directory:gem env
More informacion on how to install Jenkyll here
Run the following command in the folder
bundle exec jekyll serveThe theme used for this page is the modern-resume-theme by James Grant