Sha256: 5603c07b44fa9bc946926095b3bec64001ab56690186585ec21e4d2ef6287aca

Contents?: true

Size: 751 Bytes

Versions: 13

Compression:

Stored size: 751 Bytes

Contents

require 'rubygems'
require 'rake'
require 'echoe'

require File.expand_path(File.dirname(__FILE__) + "/lib/wunderbar/version")

mkdir_p 'pkg' unless File.exist? 'pkg'

Echoe.new('wunderbar', Wunderbar::VERSION::STRING) do |p|
  p.summary    = "HTML Generator and CGI application support"
  p.description    = <<-EOF
    Provides a number of globals, helper methods, and monkey patches which
    simplify the generation of HTML and the development of CGI scripts.
  EOF
  p.url            = "http://github.com/rubys/wunderbar"
  p.author         = "Sam Ruby"
  p.email          = "rubys@intertwingly.net"
  p.dependencies   = %w(
    builder
    json
  )
end

Rake::TestTask.new do |t|
  t.libs << 'test'
  t.test_files = FileList['test/test*.rb']
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wunderbar-0.8.13 Rakefile
wunderbar-0.8.12 Rakefile
wunderbar-0.8.11 Rakefile
wunderbar-0.8.10 Rakefile
wunderbar-0.8.9 Rakefile
wunderbar-0.8.8 Rakefile
wunderbar-0.8.7 Rakefile
wunderbar-0.8.6 Rakefile
wunderbar-0.8.5 Rakefile
wunderbar-0.8.4 Rakefile
wunderbar-0.8.3 Rakefile
wunderbar-0.8.2 Rakefile
wunderbar-0.8.1 Rakefile