Ruby: Unterschied zwischen den Versionen
Aus Wikizone
(Die Seite wurde neu angelegt: „== Installation mit Homebrew == https://gorails.com/setup/osx/10.9-mavericks“) |
|||
| Zeile 1: | Zeile 1: | ||
| + | == Links == | ||
| + | http://www.bader-jene.de/wp-content/uploads/Einfuehrung_Ruby_on_Rails.pdf | ||
| + | |||
| + | |||
== Installation mit Homebrew == | == Installation mit Homebrew == | ||
| − | https://gorails.com/setup/osx/10.9-mavericks | + | # Installation mit rbenv Versionsmanager |
| + | brew install rbenv ruby-build | ||
| + | |||
| + | # Add rbenv to bash so that it loads every time you open a terminal | ||
| + | echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile | ||
| + | source ~/.bash_profile | ||
| + | |||
| + | # Install Ruby | ||
| + | rbenv install 2.3.1 | ||
| + | rbenv global 2.3.1 | ||
| + | ruby -v | ||
| + | |||
| + | https://gorails.com/setup/osx/10.9-mavericks (nicht geprüft) | ||
| + | |||
| + | == Einführung == | ||
| + | * Skriptsprache, streng Objekt Orientiert. | ||
| + | * Mit Rails wird sie zum Web Framework zur schnellen Entwicklung von MVC Anwendungen. | ||
Version vom 28. September 2016, 18:50 Uhr
Links
http://www.bader-jene.de/wp-content/uploads/Einfuehrung_Ruby_on_Rails.pdf
Installation mit Homebrew
# Installation mit rbenv Versionsmanager brew install rbenv ruby-build
# Add rbenv to bash so that it loads every time you open a terminal echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile source ~/.bash_profile
# Install Ruby rbenv install 2.3.1 rbenv global 2.3.1 ruby -v
https://gorails.com/setup/osx/10.9-mavericks (nicht geprüft)
Einführung
- Skriptsprache, streng Objekt Orientiert.
- Mit Rails wird sie zum Web Framework zur schnellen Entwicklung von MVC Anwendungen.