rtomayko / sinatra forked from bmizerany/sinatra

Classy web-development dressed in a DSL

This URL has Read+Write access

sinatra / ChangeLog
100644 83 lines (48 sloc) 2.566 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
= 0.3.3
 
  * BUG: use_in_file_templates! failes with CR/LF (#45)
 
= 0.3.2
 
  * BUG: Static and send_file read entire file into String before
    sending. Updated to stream with 8K chunks instead.
 
  * Rake tasks and assets for building basic documentation website.
    See http://sinatra.rubyforge.org
 
  * Various minor doc fixes.
 
= 0.3.1
 
  * Unbreak optional path parameters [jeremyevans]
 
= 0.3.0
 
  * Add sinatra.gemspec w/ support for github gem builds. Forks can now
    enable the build gem option in github to get free username-sinatra.gem
    builds: gem install username-sinatra.gem --source=http://gems.github.com/
 
  * Require rack-0.4 gem; removes frozen rack dir.
 
  * Basic RSpec support; require 'sinatra/test/rspec' instead of
    'sinatra/test/spec' to use. [avdi]
 
  * before filters can modify request environment vars used for
    routing (e.g., PATH_INFO, REQUEST_METHOD, etc.) for URL rewriting
    type functionality.
 
  * In-file templates now uses @@ instead of ## as template separator.
 
  * Top-level environment test predicates: development?, test?, production?
 
  * Top-level "set", "enable", and "disable" methods for tweaking
    app options. [rtomayko]
 
  * Top-level "use" method for building Rack middleware pipelines
    leading to app. See README for usage. [rtomayko]
 
  * New "reload" option - set false to disable reloading in development.
 
  * New "host" option - host/ip to bind to [cschneid]
 
  * New "app_file" option - override the file to reload in development
    mode [cschneid]
 
  * Development error/not_found page cleanup [sr, adamwiggins]
 
  * Remove a bunch of core extensions (String#to_param, String#from_param,
    Hash#from_params, Hash#to_params, Hash#symbolize_keys, Hash#pass)
 
  * Various grammar and formatting fixes to README; additions on
    community and contributing [cypher]
 
  * Build RDoc using Hanna template: http://sinatrarb.rubyforge.org/api
 
  * Specs, documentation and fixes for splat'n routes [vic]
 
  * Fix whitespace errors across all source files. [rtomayko]
 
  * Fix streaming issues with Mongrel (body not closed). [bmizerany]
 
  * Fix various issues with environment not being set properly (configure
    blocks not running, error pages not registering, etc.) [cypher]
 
  * Fix to allow locals to be passed to ERB templates [cschneid]
 
  * Fix locking issues causing random errors during reload in development.
 
  * Fix for escaped paths not resolving static files [Matthew Walker]
 
= 0.2.1
 
  * File upload fix and minor tweaks.
 
= 0.2.0
 
  * Initial gem release of 0.2 coebase.