Install - Mac

From Sandoz

(Difference between revisions)
Jump to: navigation, search
 
(3 intermediate revisions not shown)
Line 2: Line 2:
->install xcode
->install xcode
 +
http://www.blog.bridgeutopiaweb.com/post/how-to-install-rvm-and-rails-3-on-snow-leopard/
http://railscasts.com/episodes/310-getting-started-with-rails
http://railscasts.com/episodes/310-getting-started-with-rails
 +
https://jeremy.wordpress.com/2010/08/13/ruby-rvm-passenger-rails-bundler-en-developpement/
 +
http://eddorre.com/posts/installing-ruby-on-rails-postgresql-mysql-on-snow-leopard
 +
http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
 +
-----Official------
 +
http://guides.rubyonrails.org/index.html
 +
http://api.rubyonrails.org/
 +
 +
----Test driven-----
 +
http://rubysource.com/introducing-test-driven-development-with-rails-3/
 +
 +
--Install--
#RVM
#RVM
 +
$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
 +
I did -> $ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
 +
reload your shell env:
 +
$ source ~/.bash_profile
 +
find the requirements (and follow)
 +
$ rvm requirements
 +
install ruby
 +
rvm install 1.9.3
 +
=>rvm install 1.8.7
=>rvm install 1.8.7
=>rvm install 1.9.2  
=>rvm install 1.9.2  
Line 12: Line 33:
bundle install
bundle install
-
#mysql
+
##mysql
gem install mysql2
gem install mysql2
 +
 +
###Homebrew
 +
https://github.com/mxcl/homebrew/wiki/Installation
 +
 +
 +
####git-svn-branch-bash-prompt
 +
http://murfy.de/read/git-svn-branch-bash-prompt
 +
 +
#####Git on mac
 +
http://hivelogic.com/articles/compiling-git-on-snow-leopard/
 +
 +
2#Error - mysql 2
 +
rails server
 +
/Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle: dlopen(/Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle, 9): Library not loaded: libmysqlclient.16.dylib (LoadError)
 +
  Referenced from: /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle
 +
  Reason: image not found - /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle
 +
    from /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2.rb:7
 +
=>sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib
 +
-> you need to start Mysql
 +
http://www.djangoapp.com/blog/2011/07/24/installation-of-mysql-server-on-mac-os-x-lion/

Latest revision as of 12:54, 18 February 2012

->install macport ->install xcode

http://www.blog.bridgeutopiaweb.com/post/how-to-install-rvm-and-rails-3-on-snow-leopard/ http://railscasts.com/episodes/310-getting-started-with-rails https://jeremy.wordpress.com/2010/08/13/ruby-rvm-passenger-rails-bundler-en-developpement/ http://eddorre.com/posts/installing-ruby-on-rails-postgresql-mysql-on-snow-leopard http://ruby.railstutorial.org/ruby-on-rails-tutorial-book


Official------

http://guides.rubyonrails.org/index.html http://api.rubyonrails.org/


Test driven-----

http://rubysource.com/introducing-test-driven-development-with-rails-3/

--Install--

  1. RVM

$ bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) I did -> $ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) reload your shell env: $ source ~/.bash_profile find the requirements (and follow) $ rvm requirements install ruby rvm install 1.9.3

=>rvm install 1.8.7 =>rvm install 1.9.2 =>rvm 1.9.2 --default

Go to your folder bundle install

    1. mysql

gem install mysql2

      1. Homebrew

https://github.com/mxcl/homebrew/wiki/Installation


        1. git-svn-branch-bash-prompt

http://murfy.de/read/git-svn-branch-bash-prompt

          1. Git on mac

http://hivelogic.com/articles/compiling-git-on-snow-leopard/

2#Error - mysql 2 rails server /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle: dlopen(/Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle, 9): Library not loaded: libmysqlclient.16.dylib (LoadError)

 Referenced from: /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle
 Reason: image not found - /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2/mysql2.bundle
   from /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/lib/mysql2.rb:7

=>sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib -> you need to start Mysql http://www.djangoapp.com/blog/2011/07/24/installation-of-mysql-server-on-mac-os-x-lion/

Personal tools