2008-08-31 03:49:22 -04:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
|
|
|
|
|
|
s.name = 'sinatra'
|
2009-01-15 09:57:50 -05:00
|
|
|
s.version = '0.8.10'
|
|
|
|
s.date = '2009-01-16'
|
2008-08-31 03:49:22 -04:00
|
|
|
|
|
|
|
s.description = "Classy web-development dressed in a DSL"
|
|
|
|
s.summary = "Classy web-development dressed in a DSL"
|
|
|
|
|
|
|
|
s.authors = ["Blake Mizerany"]
|
2009-01-15 09:57:50 -05:00
|
|
|
s.email = "sinatrarb@googlegroups.com"
|
2008-08-31 03:49:22 -04:00
|
|
|
|
2008-09-07 22:08:34 -04:00
|
|
|
# = MANIFEST =
|
2008-08-31 03:49:22 -04:00
|
|
|
s.files = %w[
|
2009-01-13 21:35:35 -05:00
|
|
|
AUTHORS
|
2009-01-07 01:50:02 -05:00
|
|
|
CHANGES
|
2008-09-07 22:09:47 -04:00
|
|
|
LICENSE
|
|
|
|
README.rdoc
|
|
|
|
Rakefile
|
2008-12-21 01:27:40 -05:00
|
|
|
compat/app_test.rb
|
|
|
|
compat/application_test.rb
|
|
|
|
compat/builder_test.rb
|
|
|
|
compat/custom_error_test.rb
|
|
|
|
compat/erb_test.rb
|
|
|
|
compat/events_test.rb
|
|
|
|
compat/filter_test.rb
|
|
|
|
compat/haml_test.rb
|
|
|
|
compat/helper.rb
|
|
|
|
compat/mapped_error_test.rb
|
|
|
|
compat/pipeline_test.rb
|
|
|
|
compat/public/foo.xml
|
|
|
|
compat/sass_test.rb
|
|
|
|
compat/sessions_test.rb
|
|
|
|
compat/streaming_test.rb
|
|
|
|
compat/sym_params_test.rb
|
|
|
|
compat/template_test.rb
|
|
|
|
compat/use_in_file_templates_test.rb
|
|
|
|
compat/views/foo.builder
|
|
|
|
compat/views/foo.erb
|
|
|
|
compat/views/foo.haml
|
|
|
|
compat/views/foo.sass
|
|
|
|
compat/views/foo_layout.erb
|
|
|
|
compat/views/foo_layout.haml
|
|
|
|
compat/views/layout_test/foo.builder
|
|
|
|
compat/views/layout_test/foo.erb
|
|
|
|
compat/views/layout_test/foo.haml
|
|
|
|
compat/views/layout_test/foo.sass
|
|
|
|
compat/views/layout_test/layout.builder
|
|
|
|
compat/views/layout_test/layout.erb
|
|
|
|
compat/views/layout_test/layout.haml
|
|
|
|
compat/views/layout_test/layout.sass
|
|
|
|
compat/views/no_layout/no_layout.builder
|
|
|
|
compat/views/no_layout/no_layout.haml
|
2008-09-07 22:09:47 -04:00
|
|
|
lib/sinatra.rb
|
2008-12-21 01:27:40 -05:00
|
|
|
lib/sinatra/base.rb
|
|
|
|
lib/sinatra/compat.rb
|
|
|
|
lib/sinatra/images/404.png
|
|
|
|
lib/sinatra/images/500.png
|
|
|
|
lib/sinatra/main.rb
|
|
|
|
lib/sinatra/test.rb
|
2009-01-14 17:28:31 -05:00
|
|
|
lib/sinatra/test/bacon.rb
|
2008-09-07 10:30:37 -04:00
|
|
|
lib/sinatra/test/rspec.rb
|
2008-09-07 22:09:47 -04:00
|
|
|
lib/sinatra/test/spec.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
lib/sinatra/test/unit.rb
|
2008-09-07 22:09:47 -04:00
|
|
|
sinatra.gemspec
|
2008-12-21 01:27:40 -05:00
|
|
|
test/base_test.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
test/builder_test.rb
|
2008-12-21 01:27:40 -05:00
|
|
|
test/data/reload_app_file.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
test/erb_test.rb
|
2008-09-07 10:30:37 -04:00
|
|
|
test/filter_test.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
test/haml_test.rb
|
2009-01-14 17:28:31 -05:00
|
|
|
test/helper.rb
|
2008-12-21 01:27:40 -05:00
|
|
|
test/helpers_test.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
test/mapped_error_test.rb
|
2008-12-21 01:27:40 -05:00
|
|
|
test/middleware_test.rb
|
|
|
|
test/options_test.rb
|
|
|
|
test/reload_test.rb
|
|
|
|
test/request_test.rb
|
|
|
|
test/result_test.rb
|
|
|
|
test/routing_test.rb
|
2008-08-31 03:49:22 -04:00
|
|
|
test/sass_test.rb
|
2008-12-21 01:27:40 -05:00
|
|
|
test/sinatra_test.rb
|
|
|
|
test/static_test.rb
|
|
|
|
test/templates_test.rb
|
|
|
|
test/views/hello.builder
|
|
|
|
test/views/hello.erb
|
|
|
|
test/views/hello.haml
|
|
|
|
test/views/hello.sass
|
|
|
|
test/views/hello.test
|
|
|
|
test/views/layout2.builder
|
|
|
|
test/views/layout2.erb
|
|
|
|
test/views/layout2.haml
|
|
|
|
test/views/layout2.test
|
2008-08-31 03:49:22 -04:00
|
|
|
]
|
2008-09-07 22:08:34 -04:00
|
|
|
# = MANIFEST =
|
2008-08-31 03:49:22 -04:00
|
|
|
|
|
|
|
s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/}
|
|
|
|
|
|
|
|
s.extra_rdoc_files = %w[README.rdoc LICENSE]
|
2009-01-15 09:57:50 -05:00
|
|
|
s.add_dependency 'rack', '>= 0.9.1'
|
2008-08-31 03:49:22 -04:00
|
|
|
|
|
|
|
s.has_rdoc = true
|
2008-11-02 03:55:46 -05:00
|
|
|
s.homepage = "http://sinatra.rubyforge.org"
|
2008-08-31 06:50:00 -04:00
|
|
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sinatra", "--main", "README.rdoc"]
|
2008-08-31 03:49:22 -04:00
|
|
|
s.require_paths = %w[lib]
|
|
|
|
s.rubyforge_project = 'sinatra'
|
|
|
|
s.rubygems_version = '1.1.1'
|
|
|
|
end
|