rud 0.1.b1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/bin/rud +35 -0
  2. metadata +56 -0
data/bin/rud ADDED
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/env ruby
2
+ =begin license
3
+ Copyright (c) 2010 Fritz Grimpen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
22
+ =end
23
+
24
+ begin
25
+ require "rud/control"
26
+ rescue LoadError
27
+ $:.unshift(File.expand_path("../../lib/", __FILE__))
28
+ retry
29
+ end
30
+
31
+ begin
32
+ Rud::Control::main(ARGV)
33
+ rescue Interrupt
34
+ exit 4
35
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rud
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: 4
5
+ version: 0.1.b1
6
+ platform: ruby
7
+ authors:
8
+ - Fritz Conrad Grimpen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-02-26 00:00:00 +01:00
14
+ default_executable: bin/rud
15
+ dependencies: []
16
+
17
+ description: " rud is a simple and powerful and pure-ruby webserver with rack-support and\n more. It provides simple methods to execute ruby applications in the server\n process.\n"
18
+ email: fritz@grimpen.net
19
+ executables:
20
+ - rud
21
+ extensions: []
22
+
23
+ extra_rdoc_files: []
24
+
25
+ files:
26
+ - bin/rud
27
+ has_rdoc: true
28
+ homepage:
29
+ licenses:
30
+ - MIT
31
+ post_install_message:
32
+ rdoc_options: []
33
+
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 1.9.2
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.3.1
48
+ requirements: []
49
+
50
+ rubyforge_project:
51
+ rubygems_version: 1.5.2
52
+ signing_key:
53
+ specification_version: 3
54
+ summary: simple webserver for rack-applications and file delivery
55
+ test_files: []
56
+