heel 3.0.0 → 3.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/CONTRIBUTING.md +1 -1
- data/HISTORY.rdoc +1 -1
- data/README.rdoc +16 -18
- data/lib/heel.rb +1 -1
- metadata +9 -11
data/CONTRIBUTING.md
CHANGED
|
@@ -36,7 +36,7 @@ easiest way to contribute.
|
|
|
36
36
|
# Contributors
|
|
37
37
|
|
|
38
38
|
* [Jeremy Hinegardner][https://github.com/copiousfreetime]
|
|
39
|
-
* [
|
|
39
|
+
* [Chris Wanstrath][http://github.com/defunkt]
|
|
40
40
|
|
|
41
41
|
[GitHub Account]: https://github.com/signup/free "GitHub Signup"
|
|
42
42
|
[GitHub Issues]: https://github.com/copiousfreetime/heel/issues "Heel Issues"
|
data/HISTORY.rdoc
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
== Heel
|
|
2
2
|
|
|
3
|
-
* Homepage[http://
|
|
4
|
-
* {Rubyforge Project}[http://rubyforge.org/projects/copiousfreetime/]
|
|
3
|
+
* Homepage[http://github.com/copiousfreetime/heel/]
|
|
5
4
|
* email jeremy at hinegardner dot org
|
|
6
5
|
* git clone git://github.com/copiousfreetime/heel.git
|
|
7
6
|
|
|
@@ -9,23 +8,22 @@
|
|
|
9
8
|
|
|
10
9
|
Heel is a small static web server for use when you need a quick web server for a
|
|
11
10
|
directory. Once the server is running, heel will use
|
|
12
|
-
{launchy}[http://
|
|
11
|
+
{launchy}[http://rubygems.org/gems/launchy/] to open your browser at
|
|
13
12
|
the URL of your document root.
|
|
14
13
|
|
|
15
|
-
Heel is built using {Rack}[http://rack.
|
|
16
|
-
{
|
|
14
|
+
Heel is built using {Rack}[http://rack.github.com] and
|
|
15
|
+
{Puma}[http://puma.io]
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
% heel
|
|
18
|
+
Launching your browser...
|
|
19
|
+
Puma 1.6.3 starting...
|
|
20
|
+
* Min threads: 0, max threads: 16
|
|
21
|
+
* Environment: deployment
|
|
22
|
+
* Listening on tcp://0.0.0.0:4331
|
|
23
23
|
|
|
24
24
|
Or run it in the background
|
|
25
25
|
|
|
26
26
|
% heel --daemonize
|
|
27
|
-
Created /Users/jeremy/.heel
|
|
28
|
-
heel's PID (/Users/jeremy/.heel/heel.pid) and log file (/Users/jeremy/.heel/heel.log) are stored here
|
|
29
27
|
Launching your browser at http://0.0.0.0:4331/
|
|
30
28
|
|
|
31
29
|
% heel --kill
|
|
@@ -34,7 +32,7 @@ Or run it in the background
|
|
|
34
32
|
|
|
35
33
|
== FEATURES
|
|
36
34
|
|
|
37
|
-
* Automatic launching of your browser to the URL it is serving with {launchy}[http://
|
|
35
|
+
* Automatic launching of your browser to the URL it is serving with {launchy}[http://github.com/copiousfreetime/launchy/]
|
|
38
36
|
* Automatic syntax highlighting of source code files with {coderay}[http://coderay.rubychan.de/]
|
|
39
37
|
* Run in the foreground or daemonized
|
|
40
38
|
* Bind to any address and port (default is 0.0.0.0:4331)
|
|
@@ -66,13 +64,13 @@ Or run it in the background
|
|
|
66
64
|
* {coderay}[http://coderay.rubychan.de/]
|
|
67
65
|
* {launchy}[http://copiousfreetime.rubyforge.org/launchy/] >= 0.1.1
|
|
68
66
|
* {mime-types}[http://mime-types.rubyforge.org/]
|
|
69
|
-
* {
|
|
67
|
+
* {puma}[http://puma.io]
|
|
70
68
|
|
|
71
69
|
=== For development:
|
|
72
70
|
|
|
73
|
-
* {
|
|
74
|
-
* {
|
|
75
|
-
* {
|
|
71
|
+
* {minitest}[http://rubygems.org/gems/minitest]
|
|
72
|
+
* {rake}[http://rubygems.org/gems/rake]
|
|
73
|
+
* {rdoc}[http://rubygems.org/gems/rdoc]
|
|
76
74
|
|
|
77
75
|
== INSTALL:
|
|
78
76
|
|
|
@@ -80,7 +78,7 @@ Or run it in the background
|
|
|
80
78
|
|
|
81
79
|
== CREDITS:
|
|
82
80
|
|
|
83
|
-
* {
|
|
81
|
+
* {puma}[http://puma.io]
|
|
84
82
|
* {Rack}[http://rack.rubyforge.org/]
|
|
85
83
|
* http://www.famfamfam.com/ for amazing icons
|
|
86
84
|
|
data/lib/heel.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: heel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -123,15 +123,13 @@ dependencies:
|
|
|
123
123
|
- - ~>
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
125
|
version: '3.12'
|
|
126
|
-
description: Heel is a small static web server for use when you need a quick web
|
|
127
|
-
for a directory. Once the server is running, heel will use launchy to open
|
|
128
|
-
browser at the URL of your document root. Heel is built using Rack and
|
|
129
|
-
heel
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
stored here Launching your browser at http://0.0.0.0:4331/ % heel --kill Sending
|
|
134
|
-
TERM to process 3304 Done.
|
|
126
|
+
description: ! 'Heel is a small static web server for use when you need a quick web
|
|
127
|
+
server for a directory. Once the server is running, heel will use launchy to open
|
|
128
|
+
your browser at the URL of your document root. Heel is built using Rack and Puma %
|
|
129
|
+
heel Launching your browser... Puma 1.6.3 starting... * Min threads: 0, max
|
|
130
|
+
threads: 16 * Environment: deployment * Listening on tcp://0.0.0.0:4331 Or run
|
|
131
|
+
it in the background % heel --daemonize Launching your browser at http://0.0.0.0:4331/ %
|
|
132
|
+
heel --kill Sending TERM to process 3304 Done.'
|
|
135
133
|
email: jeremy@copiousfreetime.org
|
|
136
134
|
executables:
|
|
137
135
|
- heel
|
|
@@ -215,7 +213,7 @@ rubygems_version: 1.8.24
|
|
|
215
213
|
signing_key:
|
|
216
214
|
specification_version: 3
|
|
217
215
|
summary: Heel is a small static web server for use when you need a quick web server
|
|
218
|
-
for a directory. Once the server is running, heel will use {launchy}[http://
|
|
216
|
+
for a directory. Once the server is running, heel will use {launchy}[http://rubygems.org/gems/launchy/]
|
|
219
217
|
to open your browser at the URL of your document root.
|
|
220
218
|
test_files:
|
|
221
219
|
- spec/configuration_spec.rb
|