Ruby
Aus Wikizone
Version vom 28. September 2016, 18:50 Uhr von 149.172.227.142 (Diskussion)
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.