mongrel2 0.30.0 → 0.30.1
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/History.rdoc +6 -0
- data/README.rdoc +2 -3
- data/Rakefile +1 -0
- data/lib/mongrel2.rb +2 -2
- data.tar.gz.sig +0 -0
- metadata +18 -2
- metadata.gz.sig +0 -0
data/History.rdoc
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
== v0.30.1 [2012-07-27] Michael Granger <ged@FaerieMUD.org>
|
|
2
|
+
|
|
3
|
+
Documentation and packaging fixes. Switch to sqlite3 until
|
|
4
|
+
Amalgalite works until MacOS X again.
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
== v0.30.0 [2012-07-27] Michael Granger <ged@FaerieMUD.org>
|
|
2
8
|
|
|
3
9
|
- Add a static index page to the quickstart Dir directory.
|
data/README.rdoc
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
= Ruby-Mongrel2
|
|
2
2
|
|
|
3
|
-
home ::
|
|
4
|
-
code :: http://repo.deveiate.org/Ruby-Mongrel2
|
|
3
|
+
home :: https://bitbucket.org/ged/ruby-mongrel2
|
|
5
4
|
github :: https://github.com/ged/ruby-mongrel2
|
|
6
5
|
docs :: http://deveiate.org/code/mongrel2
|
|
7
6
|
|
|
@@ -141,7 +140,7 @@ Mongrel2::RequestFactory::
|
|
|
141
140
|
== Contributing
|
|
142
141
|
|
|
143
142
|
You can check out the current development source with Mercurial via its
|
|
144
|
-
{
|
|
143
|
+
{Bitbucket project}[https://bitbucket.org/ged/ruby-mongrel2]. Or if you
|
|
145
144
|
prefer Git, via {its Github mirror}[https://github.com/ged/ruby-mongrel2].
|
|
146
145
|
|
|
147
146
|
After checking out the source, run:
|
data/Rakefile
CHANGED
|
@@ -33,6 +33,7 @@ hoespec = Hoe.spec 'mongrel2' do
|
|
|
33
33
|
self.dependency 'sysexits', '~> 1.0'
|
|
34
34
|
self.dependency 'zmq', '~> 2.1'
|
|
35
35
|
self.dependency 'loggability','~> 0.2'
|
|
36
|
+
self.dependency 'sqlite3', '~> 1.3'
|
|
36
37
|
|
|
37
38
|
self.dependency 'configurability', '~> 1.0', :developer
|
|
38
39
|
self.dependency 'simplecov', '~> 0.6', :developer
|
data/lib/mongrel2.rb
CHANGED
|
@@ -20,10 +20,10 @@ module Mongrel2
|
|
|
20
20
|
abort "\n\n>>> Mongrel2 requires Ruby 1.9.2 or later. <<<\n\n" if RUBY_VERSION < '1.9.2'
|
|
21
21
|
|
|
22
22
|
# Library version constant
|
|
23
|
-
VERSION = '0.30.
|
|
23
|
+
VERSION = '0.30.1'
|
|
24
24
|
|
|
25
25
|
# Version-control revision constant
|
|
26
|
-
REVISION = %q$Revision:
|
|
26
|
+
REVISION = %q$Revision: 4ebef57dc78c $
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
require 'mongrel2/constants'
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongrel2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.30.
|
|
4
|
+
version: 0.30.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -166,6 +166,22 @@ dependencies:
|
|
|
166
166
|
- - ~>
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0.2'
|
|
169
|
+
- !ruby/object:Gem::Dependency
|
|
170
|
+
name: sqlite3
|
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
|
172
|
+
none: false
|
|
173
|
+
requirements:
|
|
174
|
+
- - ~>
|
|
175
|
+
- !ruby/object:Gem::Version
|
|
176
|
+
version: '1.3'
|
|
177
|
+
type: :runtime
|
|
178
|
+
prerelease: false
|
|
179
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
180
|
+
none: false
|
|
181
|
+
requirements:
|
|
182
|
+
- - ~>
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '1.3'
|
|
169
185
|
- !ruby/object:Gem::Dependency
|
|
170
186
|
name: hoe-mercurial
|
|
171
187
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -382,7 +398,7 @@ files:
|
|
|
382
398
|
- spec/mongrel2/table_spec.rb
|
|
383
399
|
- spec/mongrel2/websocket_spec.rb
|
|
384
400
|
- spec/mongrel2_spec.rb
|
|
385
|
-
homepage:
|
|
401
|
+
homepage: https://bitbucket.org/ged/ruby-mongrel2
|
|
386
402
|
licenses:
|
|
387
403
|
- BSD
|
|
388
404
|
post_install_message:
|
metadata.gz.sig
CHANGED
|
Binary file
|