menuboy 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f981149a9b3c5100d98d9185cc0a63672853d2c4
4
- data.tar.gz: 730e809487411b80f7752f5f4bb09e42a45de2f2
3
+ metadata.gz: edb7fe58090b1cfc408ab5058acbe3e9d227767d
4
+ data.tar.gz: e9758530e40687d84cd1a943861554e6b71851ee
5
5
  SHA512:
6
- metadata.gz: a9055ab61a5209a6459f89cca52cb38114c3b39bb6c0f42321f93b3bc98f224eb358a46ce51acf7fb62f9fb562d58ad69eb6a6862f25534bc2d28ce2ad8a8a51
7
- data.tar.gz: 38398fc9e2767fda3bffea8d1c20be5e52f22a0a99d06cc7a228cf5b98d0828276503aedd1f481dd94c725356afce82e76cb54f05a23152cc210cbbaf410aa51
6
+ metadata.gz: 4aa5a7e16d167984e918b20fec5e21a32f8d01923f21e859da7b6cd01ccacd23a2151f3cab1abad2ba459ca4c169766b2ea8eff6233b85ce2b01622328553b6e
7
+ data.tar.gz: 2cc248871441e7dc5c82e2560f56c855983368dc940f31bc8a65038e84b5e03762154e6cdf1297df6498e2d19c9da761f2e7c9b26757dd9ce1dbfb4e046ea6d7
data/README.md CHANGED
@@ -10,6 +10,9 @@ menuboy.
10
10
 
11
11
  ---
12
12
 
13
+ ### v0.1.1
14
+ * Fix bug where STDIN would not return to normal under linux
15
+
13
16
  ### v0.1.0
14
17
  * Remove `STDIN.getch` loop approach which was causing formatting
15
18
  issues with other programs trying to write to STDOUT
data/lib/menuboy.rb CHANGED
@@ -81,7 +81,10 @@ module Menuboy
81
81
  @target.print_help
82
82
  @target.prompt
83
83
 
84
- Signal.trap("INT") { exit }
84
+ Signal.trap("INT") {
85
+ Menuboy.normal_terminal
86
+ exit
87
+ }
85
88
 
86
89
  EM.run do
87
90
  Menuboy.raw_terminal
@@ -1,3 +1,3 @@
1
1
  module Menuboy
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: menuboy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keyvan Fatehi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-09 00:00:00.000000000 Z
11
+ date: 2013-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-termios