Last active
October 18, 2022 14:57
-
-
Save mikedijkstra/4449041 to your computer and use it in GitHub Desktop.
Revisions
-
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -75,5 +75,8 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist #### 18. Clone your dotfiles > https://github.com/thoughtbot/dotfiles If POW loads the wrong ruby version you might have to add the following to ~/.powconfig export PATH="/usr/local/Cellar/rbenv/0.3.0/bin:/Users/micdijkstra/.rbenv/shims:/Users/micdijkstra/.rbenv/bin:$PATH" -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -37,6 +37,8 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > initdb /usr/local/var/postgres -E utf8 > See for memory issues: http://willbryant.net/software/mac_os_x/postgres_initdb_fatal_shared_memory_error_on_leopard #### 9. Install Heroku toolbelt > $ brew install heroku-toolbelt -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Makre sure your home directory does not have a space in it or gcc will crap itse #### 8. Install postgres > brew install postgres --no-python > initdb /usr/local/var/postgres -E utf8 #### 9. Install Heroku toolbelt -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,8 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ rbenv shell 1.9.3-p392 #### 8. Install postgres > brew install postgres --no-python > initdb /usr/local/var/postgres -E utf8 #### 9. Install Heroku toolbelt > $ brew install heroku-toolbelt -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -33,9 +33,7 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ rbenv shell 1.9.3-p392 #### 8. Install postgres > http://postgresapp.com/ #### 9. Install Heroku toolbelt > $ brew install heroku-toolbelt -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Makre sure your home directory does not have a space in it or gcc will crap itse #### 8. Install postgres > brew install postgres --no-python > initdb /usr/local/var/postgres -E utf8 #### 9. Install Heroku toolbelt -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 23 additions and 22 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -32,27 +32,38 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ rbenv shell 1.9.3-p392 #### 8. Install postgres > brew install postgres --no-python > initdb /usr/local/var/postgres -E utf8 #### 9. Install Heroku toolbelt > $ brew install heroku-toolbelt #### 10. Install imagemagick > $ brew install imagemagick #### 11. Update to latest rubygems version > $ gem update --system #### 12. Install rdoc > $ sudo gem install rdoc #### 13. Install rails, bundler, postgres > $ sudo gem install rails bundler pg #### 14. Install hub > $ sudo gem install hub #### 15. Install POW > $ curl get.pow.cx | sh > $ cd ~/.pow > $ ln -s ~/Sites/storyberg #### 16. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] #### 17. Install MongoDB > $ brew install mongodb > $ mkdir -p ~/Library/LaunchAgents @@ -61,15 +72,5 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist If POW loads the wrong ruby version you might have to add the following to ~/.powconfig export PATH="/usr/local/Cellar/rbenv/0.3.0/bin:/Users/micdijkstra/.rbenv/shims:/Users/micdijkstra/.rbenv/bin:$PATH" -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 26 additions and 12 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -19,14 +19,17 @@ Makre sure your home directory does not have a space in it or gcc will crap itse #### 5. Install ruby-build > $ mkdir -p ~/.rbenv/plugins > $ cd ~/.rbenv/plugins > $ git clone git://github.com/sstephenson/ruby-build.git #### 6. Install Ruby 1.9.3 > $ rbenv install 1.9.3-p392 #### 7. Set 1.9.3 as global > $ rbenv global 1.9.3-p392 > $ rbenv shell 1.9.3-p392 #### 8. Update to latest rubygems version @@ -39,23 +42,34 @@ Makre sure your home directory does not have a space in it or gcc will crap itse > $ sudo gem install rails #### 11. Install bundler > $ sudo gem install bundler #### 12. Install postgres > $ sudo gem install pg #### 13. Install Heroku toolbelt > $ brew install heroku-toolbelt #### 14. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] #### 15. Install MongoDB > $ brew install mongodb > $ mkdir -p ~/Library/LaunchAgents > $ cp /usr/local/Cellar/mongodb/2.2.2-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ > $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist #### 16. Install imagemagick > $ brew install imagemagick #### 17. Install POW > $ curl get.pow.cx | sh > $ cd ~/.pow > $ ln -s ~/Sites/storyberg If POW loads the wrong ruby version you might have to add the following to ~/.powconfig export PATH="/usr/local/Cellar/rbenv/0.3.0/bin:/Users/micdijkstra/.rbenv/shims:/Users/micdijkstra/.rbenv/bin:$PATH" -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,9 +8,13 @@ Makre sure your home directory does not have a space in it or gcc will crap itse #### 4. Install Git > $ brew install git > $ cd > $ git clone git://github.com/sstephenson/rbenv.git .rbenv > $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login > $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login #### 5. Install ruby-build -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 24 additions and 14 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,29 +1,39 @@ Makre sure your home directory does not have a space in it or gcc will crap itself #### 1. Download and install Xcode #### 2. Install Command Line Tools (Xcode > Preference > Downloads) #### 3. Install Homebrew[http://mxcl.github.com/homebrew/] #### 4. Install Git > $ brew install git > $ cd > $ git clone git://github.com/sstephenson/rbenv.git .rbenv > $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login > $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login #### 5. Install ruby-build > $ mkdir -p ~/.rbenv/plugins > $ cd ~/.rbenv/plugins > $ git clone git://github.com/sstephenson/ruby-build.git #### 6. Install Ruby 1.9.3 > $ rbenv install 1.9.3-p392 #### 7. Set 1.9.3 as global > $ rbenv global 1.9.3-p392 > $ rbenv shell 1.9.3-p392 #### 8. Update to latest rubygems version > $ gem update --system #### 9. Install rdoc > $ sudo gem install rdoc #### 10. Install rails > $ sudo gem install rails #### 11. Install bundler $ sudo gem install bundler #### 12. Install postgres -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,11 +4,11 @@ Makre sure your home directory does not have a space in it or gcc will crap itse #### 2. Install Command Line Tools (Xcode > Preference > Downloads) #### 3. Install Homebrew[http://mxcl.github.com/homebrew/] #### 4. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login #### 5. Install ruby-build $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 17 additions and 17 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,44 +1,44 @@ Makre sure your home directory does not have a space in it or gcc will crap itself #### 1. Download and install Xcode #### 2. Install Command Line Tools (Xcode > Preference > Downloads) #### 3. Install Homebrew[http://mxcl.github.com/homebrew/] #### 4. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login #### 5. Install ruby-build $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git #### 6. Install Ruby 1.9.3 $ rbenv install 1.9.3-p392 #### 7. Set 1.9.3 as global $ rbenv global 1.9.3-p392 $ rbenv shell 1.9.3-p392 #### 8. Update to latest rubygems version $ gem update --system #### 9. Install rdoc $ sudo gem install rdoc #### 10. Install rails $ sudo gem install rails #### 11. Install bundler $ sudo gem install bundler #### 12. Install postgres $ sudo gem install pg #### 13. Install Heroku toolbelt $ brew install heroku-toolbelt #### 14. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] #### 15. Install MongoDB $ brew install mongodb $ mkdir -p ~/Library/LaunchAgents $ cp /usr/local/Cellar/mongodb/2.2.2-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist #### 16. Install imagemagick $ brew install imagemagick #### 17. Install POW $ curl get.pow.cx | sh $ cd ~/.pow $ ln -s ~/Sites/storyberg -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 3 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,20 +4,17 @@ Makre sure your home directory does not have a space in it or gcc will crap itse ### 2. Install Command Line Tools (Xcode > Preference > Downloads) ### 3. Install Homebrew[http://mxcl.github.com/homebrew/] ### 4. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login ### 5. Install ruby-build $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git ### 6. Install Ruby 1.9.3 $ rbenv install 1.9.3-p392 ### 7. Set 1.9.3 as global $ rbenv global 1.9.3-p392 $ rbenv shell 1.9.3-p392 -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,17 +4,20 @@ Makre sure your home directory does not have a space in it or gcc will crap itse ### 2. Install Command Line Tools (Xcode > Preference > Downloads) ### 3. Install Homebrew[http://mxcl.github.com/homebrew/] ### 4. Install Git > $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login ### 5. Install ruby-build > $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git ### 6. Install Ruby 1.9.3 > $ rbenv install 1.9.3-p392 ### 7. Set 1.9.3 as global $ rbenv global 1.9.3-p392 $ rbenv shell 1.9.3-p392 -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 17 additions and 17 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,44 +1,44 @@ Makre sure your home directory does not have a space in it or gcc will crap itself ### 1. Download and install Xcode ### 2. Install Command Line Tools (Xcode > Preference > Downloads) ### 3. Install Homebrew[http://mxcl.github.com/homebrew/] ### 4. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login ### 5. Install ruby-build $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git ### 6. Install Ruby 1.9.3 $ rbenv install 1.9.3-p392 ### 7. Set 1.9.3 as global $ rbenv global 1.9.3-p392 $ rbenv shell 1.9.3-p392 ### 8. Update to latest rubygems version $ gem update --system ### 9. Install rdoc $ sudo gem install rdoc ### 10. Install rails $ sudo gem install rails ### 11. Install bundler $ sudo gem install bundler ### 12. Install postgres $ sudo gem install pg ### 13. Install Heroku toolbelt $ brew install heroku-toolbelt ### 14. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] ### 15. Install MongoDB $ brew install mongodb $ mkdir -p ~/Library/LaunchAgents $ cp /usr/local/Cellar/mongodb/2.2.2-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist ### 16. Install imagemagick $ brew install imagemagick ### 17. Install POW $ curl get.pow.cx | sh $ cd ~/.pow $ ln -s ~/Sites/storyberg -
Michael Dijkstra renamed this gist
May 6, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Michael Dijkstra revised this gist
May 6, 2013 . 1 changed file with 19 additions and 9 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ Makre sure your home directory does not have a space in it or gcc will crap itself 1. Download and install Xcode 2. Install Command Line Tools (Xcode > Preference > Downloads) 3. Install Homebrew[http://mxcl.github.com/homebrew/] 4. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv @@ -11,24 +14,31 @@ $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git 6. Install Ruby 1.9.3 $ rbenv install 1.9.3-p392 7. Set 1.9.3 as global $ rbenv global 1.9.3-p392 $ rbenv shell 1.9.3-p392 8. Update to latest rubygems version $ gem update --system 9. Install rdoc $ sudo gem install rdoc 10. Install rails $ sudo gem install rails 11. Install bundler $ sudo gem install bundler 12. Install postgres $ sudo gem install pg 13. Install Heroku toolbelt $ brew install heroku-toolbelt 14. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] 15. Install MongoDB $ brew install mongodb $ mkdir -p ~/Library/LaunchAgents $ cp /usr/local/Cellar/mongodb/2.2.2-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist 16. Install imagemagick $ brew install imagemagick 17. Install POW $ curl get.pow.cx | sh $ cd ~/.pow $ ln -s ~/Sites/storyberg -
Michael Dijkstra renamed this gist
Jan 4, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Michael Dijkstra created this gist
Jan 4, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ 1. Download and install Command Line Tools for Xcode[https://developer.apple.com/downloads/index.action?=command%20line%20tools] 2. Install Homebrew[http://mxcl.github.com/homebrew/] 3. Install Git $ brew install git $ cd $ git clone git://github.com/sstephenson/rbenv.git .rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_login $ echo 'eval "$(rbenv init -)"' >> ~/.bash_login 5. Install ruby-build $ mkdir -p ~/.rbenv/plugins $ cd ~/.rbenv/plugins $ git clone git://github.com/sstephenson/ruby-build.git 6. Install Ruby 1.9.3 $ CC=/usr/bin/clang rbenv install 1.9.3-p194 7. Set 1.9.3 as global $ rbenv global 1.9.3-p194 9. Install rdoc $ sudo gem install rdoc 10. Install rails $ sudo gem install rails 11. Install bundler $ sudo gem install bundler 12. Install Quartz[http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.4.dmg] 13. Install MongoDB $ brew install mongodb $ mkdir -p ~/Library/LaunchAgents $ cp /usr/local/Cellar/mongodb/2.2.2-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/ $ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist 14. Install imagemagick $ brew install imagemagick 15. Install POW $ curl get.pow.cx | sh $ cd ~/.pow $ ln -s ~/Sites/storyberg If POW loads the wrong ruby version you might have to add the following to ~/.powconfig export PATH="/usr/local/Cellar/rbenv/0.3.0/bin:/Users/micdijkstra/.rbenv/shims:/Users/micdijkstra/.rbenv/bin:$PATH"