19 lines
730 B
Ruby
19 lines
730 B
Ruby
|
require 'rubygems'
|
||
|
require 'rake'
|
||
|
require 'echoe'
|
||
|
|
||
|
Echoe.new('trivial', '0.0.1') do |p|
|
||
|
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
|