Sha256: b882fe26044ce8adcc428fd6765e4fa60d6bac50bcff643f0f6d9124726f618d

Contents?: true

Size: 377 Bytes

Versions: 10

Compression:

Stored size: 377 Bytes

Contents

#!../bin/nake

task :simple do
  puts "Hello World!"
end

task "a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:p:q:r:s:t:u:v:w:x:y:z" do
  # do nothing
end

directory "tmp/www"

file "tmp/www/index.html", "tmp/www" do |path|
  File.open(path, "w") do |file|
    file.puts("<html>Hello World!</html>")
  end
end

#rule ".o" => [".c"] do |task|
#  sh "gcc #{task.source} -c -o #{task.name}"
#end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
nake-0.1.1 bm/tasks.rb
nake-0.1 bm/tasks.rb
nake-0.0.9.5 bm/tasks.rb
nake-0.0.9.4 bm/tasks.rb
nake-0.0.9.3 bm/tasks.rb
nake-0.0.9.2 bm/tasks.rb
nake-0.0.9.pre bm/tasks.rb
do_riak-0.10.1.pre gems/gems/nake-0.0.8/bm/tasks.rb
nake-0.0.8.pre bm/tasks.rb
nake-0.0.8 bm/tasks.rb