simple_server 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/MIT-LICENCE +7 -0
- data/README.md +44 -0
- data/Rakefile +2 -0
- data/bin/serve +5 -0
- data/lib/simple_server.rb +26 -0
- data/lib/simple_server/version.rb +3 -0
- data/simple_server.gemspec +17 -0
- metadata +56 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Craig R Webster
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/MIT-LICENCE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (C) 2012 Craig R Webster <craig@barkingiguana.com>
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# SimpleServer
|
2
|
+
|
3
|
+
Easily serve content from a local directory. I pulled together a [Ruby
|
4
|
+
one-liner][0] a while back to do this, but it's easier to remember just one little
|
5
|
+
command.
|
6
|
+
|
7
|
+
[0]: http://barkingiguana.com/2010/04/11/a-one-line-web-server-in-ruby/
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
gem install simple_server
|
12
|
+
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
There's a simple command-line tool, `simple_server`, which can be run
|
17
|
+
directly:
|
18
|
+
|
19
|
+
$ simple_server
|
20
|
+
|
21
|
+
With no arguments this will serve the current directory on port 3000. You can
|
22
|
+
specify directory and port like this:
|
23
|
+
|
24
|
+
$ simple_server /tmp 8080
|
25
|
+
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
1. Fork it
|
30
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
32
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
+
5. Create new Pull Request
|
34
|
+
|
35
|
+
|
36
|
+
## Authors
|
37
|
+
|
38
|
+
Craig R Webster <craig@barkingiguana.com>
|
39
|
+
|
40
|
+
|
41
|
+
## Licence
|
42
|
+
|
43
|
+
This project is released under the terms of the MIT licence, a copy of which
|
44
|
+
can be found distributed with this profect in the file MIT-LICENCE.
|
data/Rakefile
ADDED
data/bin/serve
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require "webrick"
|
2
|
+
require "simple_server/version"
|
3
|
+
|
4
|
+
module SimpleServer
|
5
|
+
class Server
|
6
|
+
attr_accessor :root
|
7
|
+
private :root=
|
8
|
+
|
9
|
+
attr_accessor :port
|
10
|
+
private :port=
|
11
|
+
|
12
|
+
def initialize root = Dir.pwd, port = 3000
|
13
|
+
self.root = root
|
14
|
+
self.port = port
|
15
|
+
end
|
16
|
+
|
17
|
+
def server
|
18
|
+
@server ||= WEBrick::HTTPServer.new(:Port => port, :DocumentRoot => root)
|
19
|
+
end
|
20
|
+
|
21
|
+
def run
|
22
|
+
trap("INT") { server.shutdown }
|
23
|
+
server.start
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/simple_server/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Craig R Webster"]
|
6
|
+
gem.email = ["craig@barkingiguana.com"]
|
7
|
+
gem.description = %q{Easily serve content from a local directory.}
|
8
|
+
gem.summary = %q{Easily serve content from a local directory.}
|
9
|
+
gem.homepage = ""
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "simple_server"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = SimpleServer::VERSION
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: simple_server
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Craig R Webster
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-08-05 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Easily serve content from a local directory.
|
15
|
+
email:
|
16
|
+
- craig@barkingiguana.com
|
17
|
+
executables:
|
18
|
+
- serve
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- .gitignore
|
23
|
+
- Gemfile
|
24
|
+
- LICENSE
|
25
|
+
- MIT-LICENCE
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- bin/serve
|
29
|
+
- lib/simple_server.rb
|
30
|
+
- lib/simple_server/version.rb
|
31
|
+
- simple_server.gemspec
|
32
|
+
homepage: ''
|
33
|
+
licenses: []
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ! '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
requirements: []
|
51
|
+
rubyforge_project:
|
52
|
+
rubygems_version: 1.8.24
|
53
|
+
signing_key:
|
54
|
+
specification_version: 3
|
55
|
+
summary: Easily serve content from a local directory.
|
56
|
+
test_files: []
|