sinatra 0.1.5 → 0.1.6
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/CHANGELOG +1 -0
- data/Manifest +1 -1
- data/lib/sinatra.rb +2 -0
- data/sinatra.gemspec +4 -4
- metadata +4 -4
data/CHANGELOG
CHANGED
data/Manifest
CHANGED
data/lib/sinatra.rb
CHANGED
|
@@ -38,6 +38,8 @@ Sinatra::Loader.load_files Dir.glob(SINATRA_ROOT + '/lib/sinatra/rack_ext/*.rb')
|
|
|
38
38
|
Sinatra::Loader.load_files Dir.glob(SINATRA_ROOT + '/lib/sinatra/*.rb')
|
|
39
39
|
Sinatra::Loader.load_files Dir.glob(SINATRA_ROOT + '/vendor/*/init.rb')
|
|
40
40
|
|
|
41
|
+
Sinatra::Loader.load_files Dir.glob(File.dirname($0) + '/vendor/*/init.rb')
|
|
42
|
+
|
|
41
43
|
Sinatra::Environment.prepare
|
|
42
44
|
|
|
43
45
|
at_exit do
|
data/sinatra.gemspec
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
# Gem::Specification for Sinatra-0.1.
|
|
2
|
+
# Gem::Specification for Sinatra-0.1.6
|
|
3
3
|
# Originally generated by Echoe
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = %q{sinatra}
|
|
7
|
-
s.version = "0.1.
|
|
8
|
-
s.date = %q{2007-10-
|
|
7
|
+
s.version = "0.1.6"
|
|
8
|
+
s.date = %q{2007-10-15}
|
|
9
9
|
s.summary = %q{Sinatra is a classy web-framework dressed in a DSL}
|
|
10
10
|
s.email = %q{blake.mizerany@gmail.com}
|
|
11
11
|
s.homepage = %q{http://sinatra.rubyforge.org/}
|
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.description = %q{Sinatra is a classy web-framework dressed in a DSL}
|
|
14
14
|
s.has_rdoc = true
|
|
15
15
|
s.authors = ["Blake Mizerany"]
|
|
16
|
-
s.files = ["CHANGELOG", "examples/hello/hello.rb", "examples/hello/views/hello.erb", "examples/todo/todo.rb", "files/default_index.erb", "files/error.erb", "files/logo.png", "files/not_found.erb", "lib/sinatra/context/renderer.rb", "lib/sinatra/context.rb", "lib/sinatra/core_ext/array.rb", "lib/sinatra/core_ext/class.rb", "lib/sinatra/core_ext/hash.rb", "lib/sinatra/core_ext/kernel.rb", "lib/sinatra/core_ext/metaid.rb", "lib/sinatra/core_ext/module.rb", "lib/sinatra/core_ext/symbol.rb", "lib/sinatra/dispatcher.rb", "lib/sinatra/dsl.rb", "lib/sinatra/environment.rb", "lib/sinatra/event.rb", "lib/sinatra/irb.rb", "lib/sinatra/loader.rb", "lib/sinatra/logger.rb", "lib/sinatra/options.rb", "lib/sinatra/rack_ext/request.rb", "lib/sinatra/route.rb", "lib/sinatra/server.rb", "lib/sinatra/sessions.rb", "lib/sinatra/test_methods.rb", "lib/sinatra.rb", "LICENSE", "RakeFile", "README", "sinatra.gemspec", "site/index.htm", "site/index.html", "site/logo.png", "test/helper.rb", "test/sinatra/dispatcher_test.rb", "test/sinatra/event_test.rb", "test/sinatra/renderer_test.rb", "test/sinatra/request_test.rb", "test/sinatra/route_test.rb", "test/sinatra/static_files/foo.txt", "test/sinatra/static_files_test.rb", "test/sinatra/url_test.rb", "vendor/erb/init.rb", "vendor/erb/lib/erb.rb", "vendor/haml/init.rb", "vendor/haml/lib/haml.rb", "Rakefile"
|
|
16
|
+
s.files = ["CHANGELOG", "examples/hello/hello.rb", "examples/hello/views/hello.erb", "examples/todo/todo.rb", "files/default_index.erb", "files/error.erb", "files/logo.png", "files/not_found.erb", "lib/sinatra/context/renderer.rb", "lib/sinatra/context.rb", "lib/sinatra/core_ext/array.rb", "lib/sinatra/core_ext/class.rb", "lib/sinatra/core_ext/hash.rb", "lib/sinatra/core_ext/kernel.rb", "lib/sinatra/core_ext/metaid.rb", "lib/sinatra/core_ext/module.rb", "lib/sinatra/core_ext/symbol.rb", "lib/sinatra/dispatcher.rb", "lib/sinatra/dsl.rb", "lib/sinatra/environment.rb", "lib/sinatra/event.rb", "lib/sinatra/irb.rb", "lib/sinatra/loader.rb", "lib/sinatra/logger.rb", "lib/sinatra/options.rb", "lib/sinatra/rack_ext/request.rb", "lib/sinatra/route.rb", "lib/sinatra/server.rb", "lib/sinatra/sessions.rb", "lib/sinatra/test_methods.rb", "lib/sinatra.rb", "LICENSE", "Manifest", "RakeFile", "README", "sinatra.gemspec", "site/index.htm", "site/index.html", "site/logo.png", "test/helper.rb", "test/sinatra/dispatcher_test.rb", "test/sinatra/event_test.rb", "test/sinatra/renderer_test.rb", "test/sinatra/request_test.rb", "test/sinatra/route_test.rb", "test/sinatra/static_files/foo.txt", "test/sinatra/static_files_test.rb", "test/sinatra/url_test.rb", "vendor/erb/init.rb", "vendor/erb/lib/erb.rb", "vendor/haml/init.rb", "vendor/haml/lib/haml.rb", "Rakefile"]
|
|
17
17
|
s.test_files = ["test/sinatra/dispatcher_test.rb", "test/sinatra/event_test.rb", "test/sinatra/renderer_test.rb", "test/sinatra/request_test.rb", "test/sinatra/route_test.rb", "test/sinatra/static_files_test.rb", "test/sinatra/url_test.rb"]
|
|
18
18
|
s.add_dependency(%q<mongrel>, [">= 1.0.1"])
|
|
19
19
|
s.add_dependency(%q<rack>, [">= 0.2.0"])
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.
|
|
2
|
+
rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: sinatra
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.1.
|
|
7
|
-
date: 2007-10-
|
|
6
|
+
version: 0.1.6
|
|
7
|
+
date: 2007-10-15 00:00:00 -07:00
|
|
8
8
|
summary: Sinatra is a classy web-framework dressed in a DSL
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -61,6 +61,7 @@ files:
|
|
|
61
61
|
- lib/sinatra/test_methods.rb
|
|
62
62
|
- lib/sinatra.rb
|
|
63
63
|
- LICENSE
|
|
64
|
+
- Manifest
|
|
64
65
|
- RakeFile
|
|
65
66
|
- README
|
|
66
67
|
- sinatra.gemspec
|
|
@@ -81,7 +82,6 @@ files:
|
|
|
81
82
|
- vendor/haml/init.rb
|
|
82
83
|
- vendor/haml/lib/haml.rb
|
|
83
84
|
- Rakefile
|
|
84
|
-
- Manifest
|
|
85
85
|
test_files:
|
|
86
86
|
- test/sinatra/dispatcher_test.rb
|
|
87
87
|
- test/sinatra/event_test.rb
|