3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ruby 勉強メモ(ソースコードの一括管理)

Posted at

概要

前回までは変数や関数、条件分岐などの基本的なことを勉強した。基本的なプログラムを作るときはコードの量は大した量にならないが、いずれ複雑なプログラミングをするうちにファイルは複数に分割されるだろう。
このような状況下では、分割された複数のソースファイルをリンクしてコンパイルする便利なmakeというビルドツールがあった。
今回はそのmakeコマンドのRubyでの代替であるrakeについて学んだメモを以下に記す

rakeファイル

rakeを使うことであらかじめ定義した一連のタスクを実行することができる。どこにあらかじめ定義するかというと、rakeファイルである。
書き方としては基本的に

task : タスク名 do
処理1
処理2
end

rakeファイルの実行

rake タスク名
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?