mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Updated gemspec and fixed rake install error
When running rake install I would get this error: $ rake install (in .../sinatra) updated sinatra.gemspec rake aborted! Don't know how to build task 'test/render_backtrace_test.rb'
This commit is contained in:
parent
e3a9f9e3b8
commit
edcf07ee05
1 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@ Gem::Specification.new do |s|
|
||||||
|
|
||||||
s.name = 'sinatra'
|
s.name = 'sinatra'
|
||||||
s.version = '0.10.1'
|
s.version = '0.10.1'
|
||||||
s.date = '2009-06-07'
|
s.date = '2009-10-08'
|
||||||
|
|
||||||
s.description = "Classy web-development dressed in a DSL"
|
s.description = "Classy web-development dressed in a DSL"
|
||||||
s.summary = "Classy web-development dressed in a DSL"
|
s.summary = "Classy web-development dressed in a DSL"
|
||||||
|
@ -17,6 +17,7 @@ Gem::Specification.new do |s|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
CHANGES
|
CHANGES
|
||||||
LICENSE
|
LICENSE
|
||||||
|
README.jp.rdoc
|
||||||
README.rdoc
|
README.rdoc
|
||||||
Rakefile
|
Rakefile
|
||||||
lib/sinatra.rb
|
lib/sinatra.rb
|
||||||
|
@ -25,6 +26,7 @@ Gem::Specification.new do |s|
|
||||||
lib/sinatra/images/500.png
|
lib/sinatra/images/500.png
|
||||||
lib/sinatra/main.rb
|
lib/sinatra/main.rb
|
||||||
lib/sinatra/showexceptions.rb
|
lib/sinatra/showexceptions.rb
|
||||||
|
lib/tilt.rb
|
||||||
sinatra.gemspec
|
sinatra.gemspec
|
||||||
test/base_test.rb
|
test/base_test.rb
|
||||||
test/builder_test.rb
|
test/builder_test.rb
|
||||||
|
@ -39,7 +41,6 @@ Gem::Specification.new do |s|
|
||||||
test/mapped_error_test.rb
|
test/mapped_error_test.rb
|
||||||
test/middleware_test.rb
|
test/middleware_test.rb
|
||||||
test/options_test.rb
|
test/options_test.rb
|
||||||
test/render_backtrace_test.rb
|
|
||||||
test/request_test.rb
|
test/request_test.rb
|
||||||
test/response_test.rb
|
test/response_test.rb
|
||||||
test/result_test.rb
|
test/result_test.rb
|
||||||
|
|
Loading…
Reference in a new issue