iterm2_escape 1.0.0 → 1.0.1

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: c7bdf76a379df15ad8ca81c9a56d42bf7fd6ff3e
4
- data.tar.gz: 4a7f80ce8687c1a88eddecf2e5e24688ef2e9fe7
3
+ metadata.gz: 5cc9dbfab6c67b511676f08d73cba36b649cc200
4
+ data.tar.gz: a7363cb98c495bbb0e2a0a0e8cd2ddf4214dc87b
5
5
  SHA512:
6
- metadata.gz: a0ee772746dc60a32f212b6d768b72c7748945b608e1697ebd1569810b035702bc4416cc3739926915d945b7d01cf1f9a1a28814d8a93d361506ccf01eaf5751
7
- data.tar.gz: 47f8004d0a7ea58a9a78750e626dcf16cf44ce56fdbb37281a4e5be535a0c760385c68e72de6ee526a85c0ec47fd07abb65045332a20b22e393f38fe04b7a497
6
+ metadata.gz: 838f74b9d4dd7fde529f8607358fe9321ee218ca242ee6104e4db2777fa23f20fd657b85742a0b3ac2abbd26744fab05701e739ffeefd418088e85e26280d789
7
+ data.tar.gz: c5f107ef37b0ba241957b97d9817d14d81cea3c9c10d8f621c01dceb7c2e0326ca53387bd036d365ed988a07c6ef40c0577c66a11595a7cb27929195771e125a
data/README.md CHANGED
@@ -3,7 +3,11 @@
3
3
  [![Build Status](https://travis-ci.org/mark-rushakoff/iterm2_escape.png)](https://travis-ci.org/mark-rushakoff/iterm2_escape)
4
4
  [![Code Climate](https://codeclimate.com/github/mark-rushakoff/iterm2_escape.png)](https://codeclimate.com/github/mark-rushakoff/iterm2_escape)
5
5
 
6
- TODO: Write a gem description
6
+ iterm2_escape provides a simple interface to controlling iTerm2 through escape codes (both proprietary and standard).
7
+
8
+ Currently, it allows you to set the color of the tabs and to set the title of tabs and windows.
9
+
10
+ (iterm2_escape is in no way affiliated with [iTerm2](https://github.com/gnachman/iTerm2) -- it was just made by a fan.)
7
11
 
8
12
  ## Installation
9
13
 
@@ -2,4 +2,5 @@ require 'iterm2_escape'
2
2
 
3
3
  abort "Usage: #{$0} RED GREEN BLUE" unless ARGV.size == 3
4
4
 
5
- Iterm2Escape::Tab.set_color(*(ARGV.map(&:to_i)))
5
+ red, green, blue = *ARGV.map(&:to_i)
6
+ Iterm2Escape::Tab.set_color(red, green, blue)
@@ -1,3 +1,3 @@
1
1
  module Iterm2Escape
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iterm2_escape
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Rushakoff