Mac上配置 Ruby on Rails和Git

來源:互聯網
上載者:User

標籤:

Ruby on Rails on Mac====================================================================================http://morizyun.github.io/blog/marvericks-rails-setup-ruby-rvm-msyql/for general : useful : http://qiita.com/keneo/items/0a58b188183b5100e3affor mysql : http://qiita.com/hkusu/items/cda3e8461e7a46ecf25dhttp://dev.classmethod.jp/server-side/language/build-ruby-environment-by-rbenv/1.安裝Homebrew $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2.安裝rbenv$brew install ruby-build$brew install rbenv設定path$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bash_profile$ echo 'eval "$(rbenv init -)"' >> .bash_profile$ source .bash_profile3.安裝可能用的工具,包3.1 安裝sublime和配置用命令列開啟 sublimehttps://gist.github.com/olivierlacan/1195304安裝好sublime以後,在/usr/local/bin下面建立它的捷徑,這樣就能在任何地方都能執行subl來啟動sublime$ln -s /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/sub3.2 裝git$rew install git3.3 使用irb(interactive ruby)的包$ brew install readline3.4 安裝使用https的包$ brew install openssl4.安裝ruby$ rbenv install -l 確定可以安裝的ruby$ rbenv install 2.1.4 安裝要使用的版本$ rbenv global 2.1.4 設定使用的版本,如果不設定,直接ruby -v看到的可能是其他版本$ rbenv versions 確認$ ruby -v 會顯示ruby 2.1.4p265 (2014-10-27 revision 48166) [x86_64-darwin14.0]5.安裝rails$ gem install rails$ gem install bundler$ rbenv rehash$ source ~/.bash_profile$ rails -v 會顯示 rails 4.2.16.安裝 MySql$ brew update$ brew install mysql$ brew infö mysql 確認,也可以mysql —version 只看版本號碼7.啟動rails$ rails server開啟http://localhost:3000確認是否成功Ctrl+c 退出8.使用MySql$ mysql.server start$ mysql -uroot 預設沒有密碼 如果要設密碼執行以下語句$ mysql_secure_installation $ mysql -uroot -p 帶密碼mysql>exit 退出$ mysql.server stop9.第二次啟動電腦後,執行rails -v 提示未安裝,執行ruby -v顯示的是2.0.0,執行rbenv global 2.1.4後還是不變。此時執行$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile (把rbenv的初始化指令碼寫入該檔案)(如果許可權不夠,修改該檔案擁有者為使用者)$ source ~/.bash_profile(執行該檔案)再執行ruby -v rails -v就可以了。10.開發Ruby on Railshttp://openbook4.me/projects/9211. 建立工程及上傳到github$git config --global user.name "ユーザー名"$git config --global user.email [email protected]$git config --global core.editor "subl -w" //配置編輯器,這裡是subl$subl ~/.netrc 追加以下 //如果不執行,每次push需要輸入username和passwordmachine github.comlogin USERNAMEpassword PASSWORD$rails new larry-twitter //建立app$cd larry-twitter$ git init //會在app目錄下建立git repo, larry-twitter$ git add .$ git commit -m "Initialize repository"網頁github上建立repository,擷取https$ git remote add origin https://github.com/yangpeng-chn/larry-twitter.git$ git push -u origin master====================================================================================

Mac上配置 Ruby on Rails和Git

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.