Sha256: 29d0dad20ae74e75a94cdea1bd14dbd01e53028b665d671d4a0454aec31db3f5
Contents?: true
Size: 699 Bytes
Versions: 31
Compression:
Stored size: 699 Bytes
Contents
namespace :git do desc "Do the initial import" task :init do sh "git init" sh "git add ." sh "git commit -a -m 'Initial import'" end end namespace :github do desc "Do the initial import" task :create do user = ENV["USER"] repo = "pupu-<%= name %>" # TODO: add the Rakefile as erb template end end namespace :javascripts do desc "Compress javascripts" task :compress do puts "This task isn't ready yet." end end namespace :stylesheets do desc "Compress stylesheets" task :compress do puts "This task isn't ready yet." end end namespace :sass do desc "Compile Sass templates" task :compile do puts "This task isn't ready yet." end end
Version data entries
31 entries across 16 versions & 1 rubygems