heel 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CONTRIBUTING.md +1 -1
  2. data/HISTORY.rdoc +1 -1
  3. data/README.rdoc +16 -18
  4. data/lib/heel.rb +1 -1
  5. 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
- * [Kevin Barnes][https://github.com/vinbarnes]
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
@@ -1,5 +1,5 @@
1
1
  = Changelog
2
- == Version 3.0.0 - 2013-02-06
2
+ == Version 3.0.1 - 2013-02-06
3
3
 
4
4
  * Switch to using puma for the webserver
5
5
  * Switch to using simplecov for coverage testing
data/README.rdoc CHANGED
@@ -1,7 +1,6 @@
1
1
  == Heel
2
2
 
3
- * Homepage[http://copiousfreetime.rubyforge.org/heel/]
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://copiousfreetime.rubyforge.org/launchy/] to open your browser at
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.rubyforge.org] and
16
- {Thin}[http://code.macournoyer.com/thin/]
14
+ Heel is built using {Rack}[http://rack.github.com] and
15
+ {Puma}[http://puma.io]
17
16
 
18
- % heel
19
- >> Thin web server (v1.2.8 codename Black Keys)
20
- >> Maximum connections set to 1024
21
- >> Listening on 0.0.0.0:4331, CTRL+C to stop
22
- Launching your browser...
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://copiousfreetime.rubyforge.org/launchy/]
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
- * {thin}[http://thin.rubyforge.org/]
67
+ * {puma}[http://puma.io]
70
68
 
71
69
  === For development:
72
70
 
73
- * {rcov}[http://eigenclass.org/hiki.rb?rcov] >= 0.7.0.1
74
- * {rspec}[http://rspec.rubyforge.org/] >= 0.7.3
75
- * {rake}[http://rake.rubyforge.org/] >= 0.7.1
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
- * {Thin}[http://code.macournoyer.com/thin/]
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
@@ -4,7 +4,7 @@
4
4
  #++
5
5
 
6
6
  module Heel
7
- VERSION = '3.0.0'
7
+ VERSION = '3.0.1'
8
8
  end
9
9
 
10
10
  require 'heel/configuration'
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.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 server
127
- for a directory. Once the server is running, heel will use launchy to open your
128
- browser at the URL of your document root. Heel is built using Rack and Thin %
129
- heel >> Thin web server (v1.2.8 codename Black Keys) >> Maximum connections
130
- set to 1024 >> Listening on 0.0.0.0:4331, CTRL+C to stop Launching your browser...
131
- Or run it in the background % heel --daemonize Created /Users/jeremy/.heel heel's
132
- PID (/Users/jeremy/.heel/heel.pid) and log file (/Users/jeremy/.heel/heel.log) are
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://copiousfreetime.rubyforge.org/launchy/]
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