knod 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 981cfd40acef82d01c9cf8be4dca564f15cf4a8e
4
- data.tar.gz: b5287727a6d34b172d7239108eab4b6317522317
3
+ metadata.gz: 71a4533e73396a337e3e2426a2fca6e5e05dcf0a
4
+ data.tar.gz: 91958c4fde8b9251de6830f02bb048197c13db65
5
5
  SHA512:
6
- metadata.gz: a771a86adb892dc852ddfedd37db30f241bcdcd65247defadcd04969f437f21695f14fcd9ea227ab278596b05e4c568f9114ca9ff0ac091733ce2d6660bdc01a
7
- data.tar.gz: 48eeb718da151b2a51ca6fc6c3da9a2d0533980f7e4096c5a82482d84f8c95ec1d667620bbda003bccdabf0c4b40c2039cdae3897e7f9246c2ea47c3d73d1de9
6
+ metadata.gz: 7301dfc75b202fc046ecb14ee21f054fec139f9963336452bb70c418708fd2ea89e3d39c26ca6e51efaaa69a534f3170180a3ad7ba540a13155016d92c00cb04
7
+ data.tar.gz: 0d61f1ac43a1ba92fd08fed22ecbf9359ea93dbe64480a271a7a20f23dc92f1c0a679ae2069d2508b470537a4dce978c96b7440b6c1dd5430d361adf1f28eb03
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- knod (0.6.1)
4
+ knod (0.6.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Readme.md CHANGED
@@ -6,14 +6,8 @@ Knod is a lightweight HTTP server designed to help with front end development wh
6
6
 
7
7
  ## Installation
8
8
 
9
- Ruby 2.1 and above:
10
-
11
9
  ```gem install knod```
12
10
 
13
- Older versions of Ruby:
14
-
15
- ```gem install knod -v 0.4.4``` (does not support PATCH)
16
-
17
11
  ## Usage
18
12
 
19
13
  The Knod gem comes with an executable; you can run it from the command line with `knod`. Knod will default to port 4444 and the current directory. You can change these with command line arguments (-p and -d, respectively).
data/bin/knod CHANGED
@@ -31,5 +31,5 @@ OptionParser.new do |opts|
31
31
 
32
32
  end.parse!
33
33
 
34
- trap("INT") { exit }
34
+ trap("INT") { exit! }
35
35
  Knod.start(options)
@@ -1,3 +1,3 @@
1
1
  module Knod
2
- VERSION = '0.6.1'
2
+ VERSION = '0.6.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Moser