Sha256: ddb0f88d3ec1ab6d36cf9b6bde1697035d8e5274af120fcf7fed5dcf6e4839d4
Contents?: true
Size: 908 Bytes
Versions: 1
Compression:
Stored size: 908 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' require 'rake' require 'hoe' PKG_VERSION = "2.0.2" PKG_NAME = "jeremyf-liquid" PKG_DESC = "A secure non evaling end user template engine with aesthetic markup." Rake::TestTask.new(:test) do |t| t.libs << "lib" t.libs << "test" t.pattern = 'test/**/*_test.rb' t.verbose = false end Hoe.new(PKG_NAME, PKG_VERSION) do |p| p.rubyforge_name = PKG_NAME p.summary = PKG_DESC p.description = PKG_DESC p.author = "Tobias Luetke" p.email = "tobi@leetsoft.com" p.url = "http://www.liquidmarkup.org" end namespace :profile do task :default => [:run] desc "Run the liquid profile/perforamce coverage" task :run do ruby "performance/shopify.rb" end desc "Run KCacheGrind" task :grind => :run do system "kcachegrind /tmp/liquid.rubyprof_calltreeprinter.txt" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jeremyf-liquid-2.0.2 | Rakefile |