Skip to content

Instantly share code, notes, and snippets.

@ochaochaocha3
Created October 25, 2014 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochaochaocha3/de85186d2dac0bc5743d to your computer and use it in GitHub Desktop.
Save ochaochaocha3/de85186d2dac0bc5743d to your computer and use it in GitHub Desktop.
Ruby インストール直後の Gem インストール
#!/bin/bash
# Developing
gem install bundler pry yard rspec rubocop
rbenv rehash
# Nokogiri
gem install nokogiri -- \
--with-xml2-include=`brew --prefix libxml2`/include/libxml2 \
--with-xml2-lib=`brew --prefix libxml2`/lib \
--with-xslt-dir=`brew --prefix libxslt` \
--with-iconv-include=`brew --prefix libiconv`/include \
--with-iconv-lib=`brew --prefix libiconv`/lib
rbenv rehash
# Web developing
gem install haml sass rb-fsevent erubis bootstrap-sass font-awesome-sass \
compass rails
rbenv rehash
# Web
gem install mediawiki-gateway rubypress twitter
rbenv rehash
# Passenger
gem install passenger
rbenv rehash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment