Skip to content

Instantly share code, notes, and snippets.

View newbieOjisan's full-sized avatar

shintaro newbieOjisan

View GitHub Profile
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>カレーのレシピ</title>
</head>
<body>
<h1 id="recipe-name">カレーのレシピ</h1>
<div id="discription">
<p>誰でもできる、美味しいカレーの作り方です。旦那も息子もこのカレーが大好物。ポイントは玉ねぎと人参はミキサーで細かくしてしまうところ。逆にコクのある美味しいカレーになります。</p>
CC = "gcc"
task :default => "hello"
file "hello" => ["hello.o"] do |t|
sh "#{CC} -o #{t.name} #{t.prerequisites[0]}"
end
rule '.o' => '.c' do |t|
sh "#{CC} -c #{t.source}"