1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Sinatra 0.2.0 released

This commit is contained in:
Blake Mizerany 2008-04-11 16:29:36 -07:00
parent 02626e91b9
commit ca9ac7b5ae
3 changed files with 58 additions and 0 deletions

1
CHANGELOG Normal file
View file

@ -0,0 +1 @@
v0.2.0 Released!

45
Manifest Normal file
View file

@ -0,0 +1,45 @@
CHANGELOG
images/404.png
images/500.png
index.html
lib/sinatra/test/methods.rb
lib/sinatra/test/spec.rb
lib/sinatra/test/unit.rb
lib/sinatra.rb
README.rdoc
test/app_test.rb
test/application_test.rb
test/builder_test.rb
test/custom_error_test.rb
test/diddy_test.rb
test/erb_test.rb
test/event_context_test.rb
test/events_test.rb
test/haml_test.rb
test/helper.rb
test/mapped_error_test.rb
test/public/foo.xml
test/rest_test.rb
test/sass_test.rb
test/sessions_test.rb
test/streaming_test.rb
test/sym_params_test.rb
test/template_test.rb
test/use_in_file_templates_test.rb
test/views/foo.builder
test/views/foo.erb
test/views/foo.haml
test/views/foo.sass
test/views/foo_layout.erb
test/views/foo_layout.haml
test/views/layout_test/foo.builder
test/views/layout_test/foo.erb
test/views/layout_test/foo.haml
test/views/layout_test/foo.sass
test/views/layout_test/layout.builder
test/views/layout_test/layout.erb
test/views/layout_test/layout.haml
test/views/layout_test/layout.sass
test/views/no_layout/no_layout.builder
test/views/no_layout/no_layout.haml
Manifest

View file

@ -1,6 +1,7 @@
require 'rubygems'
require 'rake/testtask'
require 'rake/rdoctask'
require 'echoe'
task :default => :test
@ -15,3 +16,14 @@ Rake::TestTask.new do |t|
ENV['SINATRA_ENV'] = 'test'
t.pattern = File.dirname(__FILE__) + "/test/*_test.rb"
end
Echoe.new("sinatra") do |p|
p.author = "Blake Mizerany"
p.summary = "Classy web-development dressed in a DSL"
p.url = "http://www.sinatrarb.com"
p.docs_host = "sinatrarb.com:/var/www/blakemizerany.com/public/docs/"
p.dependencies = ["mongrel >=1.0.1", "rack >= 0.3.0"]
p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
p.include_rakefile = true
end