Skip to content

hiroshima-arc/ruby-basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rubyの基礎

目的

パーフェクトRubyのPart2 Ruby言語仕様を教材にRubyの勉強をする

前提

ソフトウェア バージョン 備考
ruby 2.4.0p0
rbenv 1.1.0-2
vagrant 1.8.7
docker 1.12.5

構成

環境セットアップ

$ vagrant up
$ vagrant ssh
$ cd /vagrant
$ bundle

Docker

$ docker build -t hiroshima-arc/ruby-basic .
$ docker run -it --name app hiroshima-arc/ruby-basic

Rubyプログラミング

  • 2-1 Hello,Ruby
  • 2-2 変数と定数
  • 2-3 条件分岐と真偽値
  • 2-4 式
  • 2-5 クラス
  • 2-6 モジュール
  • 2-7 組み込みクラス
  • 2-8 様々な代入式
  • 2-9 例外
  • 2-10 外部ファイルの読み込み
  • 2-11 予約語
  • 2-12 組み込み変数・定数

参照