Ruby

Aus Wikizone
Wechseln zu: Navigation, Suche

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.