monorail 0.0.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/README +37 -0
- data/RELEASE_NOTES +6 -0
- data/bin/monorail +8 -0
- data/ext/extconf.rb +33 -0
- data/ext/http.cpp +419 -0
- data/ext/http.h +154 -0
- data/ext/rubyhttp.cpp +165 -0
- data/lib/monorail.rb +137 -0
- data/lib/monorail/app.rb +132 -0
- data/lib/monorail/monorail_webd.rb +753 -0
- data/lib/monorail/monotreme.rb +40 -0
- data/tests/testem.rb +4 -0
- metadata +64 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
# $Id: monotreme.rb 2374 2006-04-24 02:51:49Z francis $
|
2
|
+
#
|
3
|
+
#
|
4
|
+
#--
|
5
|
+
# This program is free software; you can redistribute it and/or modify
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
7
|
+
# the Free Software Foundation; either version 2 of the License, or
|
8
|
+
# (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This program is free software; you can redistribute it and/or modify
|
11
|
+
# it under the terms of the GNU General Public License as published by
|
12
|
+
# the Free Software Foundation; either version 2 of the License, or
|
13
|
+
# (at your option) any later version.
|
14
|
+
#
|
15
|
+
# This program is distributed in the hope that it will be useful,
|
16
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
+
# GNU General Public License for more details.
|
19
|
+
#
|
20
|
+
# You should have received a copy of the GNU General Public License
|
21
|
+
# along with this program; if not, write to the Free Software
|
22
|
+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
23
|
+
#
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
module Monorail
|
28
|
+
class Monotreme
|
29
|
+
|
30
|
+
class << self
|
31
|
+
|
32
|
+
def run
|
33
|
+
Request.new.generate_response
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end # class Monotreme
|
39
|
+
end # module Monorail
|
40
|
+
|
data/tests/testem.rb
ADDED
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.10
|
3
|
+
specification_version: 1
|
4
|
+
name: monorail
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2006-04-23
|
8
|
+
summary: Monorail Web-development and deployment framework
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
- bin
|
12
|
+
email: garbagecat10@gmail.com
|
13
|
+
homepage: http://rubyforge.org/projects/monorail
|
14
|
+
rubyforge_project:
|
15
|
+
description:
|
16
|
+
autorequire:
|
17
|
+
default_executable: monorail
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.0.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
authors: []
|
29
|
+
files:
|
30
|
+
- bin/monorail
|
31
|
+
- lib/monorail.rb
|
32
|
+
- lib/monorail
|
33
|
+
- lib/monorail/monotreme.rb
|
34
|
+
- lib/monorail/monorail_webd.rb
|
35
|
+
- lib/monorail/app.rb
|
36
|
+
- ext/rubyhttp.cpp
|
37
|
+
- ext/http.h
|
38
|
+
- ext/http.cpp
|
39
|
+
- ext/extconf.rb
|
40
|
+
- tests/testem.rb
|
41
|
+
- README
|
42
|
+
- RELEASE_NOTES
|
43
|
+
test_files:
|
44
|
+
- tests/testem.rb
|
45
|
+
rdoc_options: []
|
46
|
+
extra_rdoc_files:
|
47
|
+
- README
|
48
|
+
- RELEASE_NOTES
|
49
|
+
executables:
|
50
|
+
- monorail
|
51
|
+
extensions:
|
52
|
+
- ext/extconf.rb
|
53
|
+
requirements: []
|
54
|
+
dependencies:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: eventmachine
|
57
|
+
version_requirement:
|
58
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
59
|
+
requirements:
|
60
|
+
-
|
61
|
+
- ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 0.4.2
|
64
|
+
version:
|