sinatra-sinatra 0.9.0.4 → 0.9.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +1 -1
- data/CHANGES +44 -0
- data/README.rdoc +12 -0
- data/Rakefile +2 -1
- data/compat/app_test.rb +3 -2
- data/compat/compat_test.rb +12 -0
- data/lib/sinatra/base.rb +206 -114
- data/lib/sinatra/compat.rb +18 -16
- data/lib/sinatra/main.rb +4 -4
- data/lib/sinatra/test.rb +10 -8
- data/sinatra.gemspec +7 -2
- data/test/base_test.rb +13 -0
- data/test/extensions_test.rb +63 -0
- data/test/helper.rb +13 -2
- data/test/helpers_test.rb +58 -0
- data/test/mapped_error_test.rb +6 -6
- data/test/middleware_test.rb +3 -1
- data/test/response_test.rb +42 -0
- data/test/routing_test.rb +166 -0
- data/test/server_test.rb +41 -0
- data/test/static_test.rb +8 -10
- data/test/test_test.rb +21 -0
- metadata +11 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-sinatra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.0.
|
4
|
+
version: 0.9.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Blake Mizerany
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-02-10 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -39,6 +39,7 @@ files:
|
|
39
39
|
- compat/app_test.rb
|
40
40
|
- compat/application_test.rb
|
41
41
|
- compat/builder_test.rb
|
42
|
+
- compat/compat_test.rb
|
42
43
|
- compat/custom_error_test.rb
|
43
44
|
- compat/erb_test.rb
|
44
45
|
- compat/events_test.rb
|
@@ -86,6 +87,7 @@ files:
|
|
86
87
|
- test/builder_test.rb
|
87
88
|
- test/data/reload_app_file.rb
|
88
89
|
- test/erb_test.rb
|
90
|
+
- test/extensions_test.rb
|
89
91
|
- test/filter_test.rb
|
90
92
|
- test/haml_test.rb
|
91
93
|
- test/helper.rb
|
@@ -95,12 +97,15 @@ files:
|
|
95
97
|
- test/options_test.rb
|
96
98
|
- test/reload_test.rb
|
97
99
|
- test/request_test.rb
|
100
|
+
- test/response_test.rb
|
98
101
|
- test/result_test.rb
|
99
102
|
- test/routing_test.rb
|
100
103
|
- test/sass_test.rb
|
104
|
+
- test/server_test.rb
|
101
105
|
- test/sinatra_test.rb
|
102
106
|
- test/static_test.rb
|
103
107
|
- test/templates_test.rb
|
108
|
+
- test/test_test.rb
|
104
109
|
- test/views/hello.builder
|
105
110
|
- test/views/hello.erb
|
106
111
|
- test/views/hello.haml
|
@@ -145,6 +150,7 @@ test_files:
|
|
145
150
|
- test/base_test.rb
|
146
151
|
- test/builder_test.rb
|
147
152
|
- test/erb_test.rb
|
153
|
+
- test/extensions_test.rb
|
148
154
|
- test/filter_test.rb
|
149
155
|
- test/haml_test.rb
|
150
156
|
- test/helpers_test.rb
|
@@ -153,9 +159,12 @@ test_files:
|
|
153
159
|
- test/options_test.rb
|
154
160
|
- test/reload_test.rb
|
155
161
|
- test/request_test.rb
|
162
|
+
- test/response_test.rb
|
156
163
|
- test/result_test.rb
|
157
164
|
- test/routing_test.rb
|
158
165
|
- test/sass_test.rb
|
166
|
+
- test/server_test.rb
|
159
167
|
- test/sinatra_test.rb
|
160
168
|
- test/static_test.rb
|
161
169
|
- test/templates_test.rb
|
170
|
+
- test/test_test.rb
|