Sha256: e33935f7778017956429111c8e5ef7b10c4d8147ad8d9cb172ce8dfec6361f5f

Contents?: true

Size: 635 Bytes

Versions: 12

Compression:

Stored size: 635 Bytes

Contents

require 'rake'

#
# Example rake tasks:
#
#     task :foo do
#       # code goes here
#     end
#
# Namespaces:
#
#     namespace :foo do
#       task :bar do
#         # code goes here
#       end
#
#       # other tasks ...
#     end
#
# Task depenencies:
#
#     task :bar => :foo
#     task :bar => 'foo:bar'
#
# Arguments:
#
#     task :foo, [:arg1, :arg2] do |t,args|
#       puts "arg1=#{args[:arg1]}"
#       puts "arg2=#{args[:arg2]}"
#     end
#
# File tasks:
#
#     file 'foo.txt' do
#       File.open('foo.txt','w') do |file|
#         # code goes here
#       end
#     end
#
# Directory tasks:
#
#     directory 'dir'
#

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ronin-2.1.0 data/templates/project/Rakefile
ronin-2.1.0.rc1 data/templates/project/Rakefile
ronin-2.0.5 data/new/project/Rakefile
ronin-2.0.4 data/new/project/Rakefile
ronin-2.0.3 data/new/project/Rakefile
ronin-2.0.2 data/new/project/Rakefile
ronin-2.0.1 data/new/project/Rakefile
ronin-2.0.0 data/new/project/Rakefile
ronin-2.0.0.beta5 data/new/project/Rakefile
ronin-2.0.0.beta4 data/new/project/Rakefile
ronin-2.0.0.beta3 data/new/project/Rakefile
ronin-2.0.0.beta2 data/new/project/Rakefile