rush2 0.7.0 → 0.7.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 +4 -4
- data/README.rdoc +6 -2
- data/VERSION +1 -1
- data/lib/rush/shell.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d815972048191a0c59d9ecfaae0ebf92e3ac2b5
|
4
|
+
data.tar.gz: 30347cadc8689b0f70b971b8f53a6f5d8b00b513
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc607021caa707ee9f336d4ee96dcd4947366291002e09bbb96f39cbeabea311116664e2e4d66588d9d3f67204fe73435a1f385f0fa5e0affe5fb1dd78b25e41
|
7
|
+
data.tar.gz: beb3f44862dff6723a2320755696e9c0988e427550b0d13ff6a0e075b828b0b426a80683cdf7cab50a03e7b8e829489a22462696afc05d5c4f7fb5bad2c30dd7
|
data/README.rdoc
CHANGED
@@ -11,6 +11,10 @@ Install v.0.6.8 from rubygems.org ~ no longer maintained
|
|
11
11
|
|
12
12
|
sudo gem install rush
|
13
13
|
|
14
|
+
Install last stable version (yes, it named rush2 and I know that it's ugly, but still):
|
15
|
+
|
16
|
+
sudo gem install rush2
|
17
|
+
|
14
18
|
|
15
19
|
Or for the bleeding edge:
|
16
20
|
|
@@ -117,9 +121,9 @@ Patches contributed by Chihiro Ito, Gabriel Ware, Michael Schutte, Ricardo Chima
|
|
117
121
|
|
118
122
|
Logo by James Lindenbaum
|
119
123
|
|
120
|
-
|
124
|
+
Now maintained by Sergey Smagin. Ask me if something is unclear: smaginsergey1310@gmail.com
|
121
125
|
|
122
|
-
http://
|
126
|
+
Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
|
123
127
|
|
124
128
|
http://groups.google.com/group/ruby-shell
|
125
129
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.1
|
data/lib/rush/shell.rb
CHANGED
@@ -20,6 +20,8 @@ module Rush
|
|
20
20
|
|
21
21
|
@config = Rush::Config.new
|
22
22
|
@history = Coolline::History.new config.history_file.full_path
|
23
|
+
Coolline::Settings[:word_boundaries] = [' ', "\t"]
|
24
|
+
Coolline::Settings[:completion_word_boundaries] = [' ', "\t"]
|
23
25
|
@readline = Coolline.new do |c|
|
24
26
|
c.transform_proc = proc { syntax_highlight c.line }
|
25
27
|
c.completion_proc = proc { complete c.completed_word }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rush2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergey Smagin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: session
|