2010-03-21 17:17:04 +00:00
|
|
|
require 'rubygems'
|
|
|
|
require 'rake'
|
|
|
|
require 'echoe'
|
|
|
|
|
2010-03-22 00:30:08 +00:00
|
|
|
Echoe.new('trivial', '0.0.5') do |p|
|
2010-03-21 17:17:04 +00:00
|
|
|
p.summary = "Ultra-lightweight website framework for PHP"
|
|
|
|
p.description = <<-EOT
|
|
|
|
For those who are using PHP to build their sites and want a very simple framework
|
|
|
|
in which to organize their files, trivial is the solution. It's one PHP file
|
|
|
|
that can include a few other pre-determined PHP and HTML files based on the
|
|
|
|
request URI. This very simple division of content, actions (controllers), and
|
|
|
|
views allows for multiple people to easily work on a smaller project without
|
|
|
|
the overhead of a larger framework.
|
|
|
|
EOT
|
|
|
|
p.author = "John Bintz"
|
|
|
|
p.email = "john@coswelproductions.com"
|
|
|
|
p.url = "http://github.com/johnbintz/trivial"
|
|
|
|
end
|