View gist:978763
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.setProperty("jruby.home",${JRUBY_HOME}); |
View gist:1284361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rvm pkg install zlib | |
cd ~/.rvm/src/zlib-1.2.5 | |
./configure | |
make | |
sudo make install | |
cd ~/.rvm/src/ruby-1.9.2-p290/ext/zlib/ | |
ruby extconf.rb | |
make |
View gist:1284377
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo aptitude install ca-certificates |
View gist:1311685
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[LeanStartup(@LeanStartupJp)] | |
http://leanstartupjapan.org/ | |
http://www.facebook.com/LeanStartupJapan | |
[樽本さん]UX/UCD | |
http://www.usablog.jp/ | |
[川口さん(@kawaguti)]Agile/Scrum/UCD | |
http://d.hatena.ne.jp/wayaguchi/ |
View gist:1322806
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rails new #{name} -T | |
- Gemfile - | |
gem 'haml' | |
gem 'haml-rails' | |
group :development, :test do | |
gem 'rspec-rails' | |
gem 'factory_girl_rails' | |
gem 'faker' |
View gist:1342929
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#{RUBY_HOME}/lib/ruby/1.9.1/webrick/config.rb の | |
:DoNotReverseLookup => nil | |
を | |
:DoNotReverseLookup => true | |
に修正する。 |
View gist:1517117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone git://github.com/creationix/nvm.git ~/.nvm | |
source ~/.nvm/nvm.sh | |
nvm install v0.6.6 | |
npm install -g coffee-script | |
npm install -g express | |
express -s -c sass #{name} |
View gist:1582134
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
heroku apps:create #{name} --stack cedar --remote staging --buildpack https://github.com/heroku/heroku-buildpack-nodejs.git |
View gist:3017534
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config heroku.remote #{remote.name} |
View gist:3191713
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
heroku config:add TZ=Asia/Tokyo |
OlderNewer