rshell 0.1.3 → 0.1.8
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.
- data/VERSION +1 -1
- data/lib/rshell.rb +1 -3
- data/lib/rshell/color_codes.yml +1 -0
- data/lib/rshell/string.rb +9 -0
- data/patch.sh +8 -0
- data/rshell-0.1.3.gem +0 -0
- data/rshell-0.1.4.gem +0 -0
- data/rshell-0.1.6.gem +0 -0
- data/rshell-0.1.7.gem +0 -0
- data/rshell.gemspec +9 -3
- metadata +11 -5
- data/lib/rshell/string_extension.rb +0 -11
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.8
|
data/lib/rshell.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
red: 31
|
data/patch.sh
ADDED
data/rshell-0.1.3.gem
ADDED
Binary file
|
data/rshell-0.1.4.gem
ADDED
Binary file
|
data/rshell-0.1.6.gem
ADDED
Binary file
|
data/rshell-0.1.7.gem
ADDED
Binary file
|
data/rshell.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rshell}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.8"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Andrea Salicetti"]
|
12
|
-
s.date = %q{2011-05-
|
12
|
+
s.date = %q{2011-05-12}
|
13
13
|
s.description = %q{It help when you need to create some shell script with Ruby.}
|
14
14
|
s.email = %q{andrea@blomming.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -21,12 +21,18 @@ Gem::Specification.new do |s|
|
|
21
21
|
"Rakefile",
|
22
22
|
"VERSION",
|
23
23
|
"lib/rshell.rb",
|
24
|
+
"lib/rshell/color_codes.yml",
|
24
25
|
"lib/rshell/console.rb",
|
25
|
-
"lib/rshell/
|
26
|
+
"lib/rshell/string.rb",
|
27
|
+
"patch.sh",
|
26
28
|
"rshell-0.1.0.gem",
|
27
29
|
"rshell-0.1.1.gem",
|
28
30
|
"rshell-0.1.2.gem",
|
29
31
|
"rshell-0.1.3.gem",
|
32
|
+
"rshell-0.1.4.gem",
|
33
|
+
"rshell-0.1.6.gem",
|
34
|
+
"rshell-0.1.7.gem",
|
35
|
+
"rshell-0.1.8.gem",
|
30
36
|
"rshell.gemspec"
|
31
37
|
]
|
32
38
|
s.homepage = %q{http://github.com/knightq/rshell}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rshell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 8
|
10
|
+
version: 0.1.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andrea Salicetti
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-05-
|
18
|
+
date: 2011-05-12 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -33,12 +33,18 @@ files:
|
|
33
33
|
- Rakefile
|
34
34
|
- VERSION
|
35
35
|
- lib/rshell.rb
|
36
|
+
- lib/rshell/color_codes.yml
|
36
37
|
- lib/rshell/console.rb
|
37
|
-
- lib/rshell/
|
38
|
+
- lib/rshell/string.rb
|
39
|
+
- patch.sh
|
38
40
|
- rshell-0.1.0.gem
|
39
41
|
- rshell-0.1.1.gem
|
40
42
|
- rshell-0.1.2.gem
|
41
43
|
- rshell-0.1.3.gem
|
44
|
+
- rshell-0.1.4.gem
|
45
|
+
- rshell-0.1.6.gem
|
46
|
+
- rshell-0.1.7.gem
|
47
|
+
- rshell-0.1.8.gem
|
42
48
|
- rshell.gemspec
|
43
49
|
has_rdoc: true
|
44
50
|
homepage: http://github.com/knightq/rshell
|