This file contains hidden or 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}); |
This file contains hidden or 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 |
This file contains hidden or 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 |
This file contains hidden or 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/ |
This file contains hidden or 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' |
This file contains hidden or 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 | |
| に修正する。 |
This file contains hidden or 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} |
This file contains hidden or 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 |
This file contains hidden or 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} |
This file contains hidden or 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