mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
getting ready for release
This commit is contained in:
parent
31bdeadd97
commit
64c77f5558
4 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
v0.1.7 FIXES:
|
||||
|
||||
* test/development/production helpers changed to config_for. There was a problem with "test" fubar'ing libraries such as the new release of Sequel
|
||||
* StaticEvent now makes sure the file it's looking for is really a file.
|
||||
|
||||
v0.1.6 Additions: require users vendor directory on load
|
||||
v0.1.5 Mutex and before-filters
|
||||
v0.1.0 Released!
|
||||
|
|
1
Manifest
1
Manifest
|
@ -33,7 +33,6 @@ LICENSE
|
|||
Manifest
|
||||
RakeFile
|
||||
README
|
||||
sinatra.gemspec
|
||||
site/index.htm
|
||||
site/index.html
|
||||
site/logo.png
|
||||
|
|
1
README
1
README
|
@ -93,6 +93,7 @@ It's probably going to happen.. you'll find a bug. Please help by:
|
|||
- Ezra Zygmuntowicz (http://brainspl.at) for answering all those random questions over IM and all the poached code
|
||||
- Ditto to Chris Wanstrath (errtheblog.com) and helping me keep things simple, and some cool tricks
|
||||
- Ari Lerner over at CitrusByte for ideas, code, and enthusiasm
|
||||
- Christian Neukirchen for Rack (http://rack.rubyforge.org/)
|
||||
- Koshi (http://www.songbirdnest.com/jkoshi/blog) here at POTI, Inc. for the Sinatra mark
|
||||
- Pete Golibersuch for the hat logo
|
||||
- John Philip Green (http://www.linkedin.com/in/johngreen) for motivation and evangelism
|
||||
|
|
4
RakeFile
4
RakeFile
|
@ -10,7 +10,7 @@ begin
|
|||
require 'echoe'
|
||||
|
||||
Echoe.new('sinatra') do |p|
|
||||
p.rubyforge_name = 'bmizerany'
|
||||
p.rubyforge_name = 'sinatra'
|
||||
p.dependencies = ['mongrel >=1.0.1', 'rack >=0.2.0']
|
||||
p.summary = "Sinatra is a classy web-framework dressed in a DSL"
|
||||
p.description = "Sinatra is a classy web-framework dressed in a DSL"
|
||||
|
@ -20,7 +20,7 @@ begin
|
|||
p.test_pattern = 'test/**/*_test.rb'
|
||||
p.include_rakefile = true
|
||||
p.rdoc_pattern = ['README', 'LICENSE'] + Dir.glob('lib/**/*.rb') + Dir.glob('vendor/**/*.rb')
|
||||
p.docs_host = "bmizerany@rubyforge.org:/var/www/gforge-projects/sinatra/"
|
||||
p.docs_host = "bmizerany@rubyforge.org:/var/www/gforge-projects/"
|
||||
end
|
||||
|
||||
rescue LoadError
|
||||
|
|
Loading…
Reference in a new issue