menutree 0.0.3 → 0.0.4
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/{README → README.md} +0 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/menutree.gemspec +4 -4
- metadata +5 -5
data/{README → README.md}
RENAMED
|
File without changes
|
data/Rakefile
CHANGED
|
@@ -11,7 +11,7 @@ begin
|
|
|
11
11
|
line, inspired by the CLI found in Cisco IOS and similar products"
|
|
12
12
|
s.email = "mat@geeky.net"
|
|
13
13
|
s.homepage = "http://github.com/mtrudel/menutree"
|
|
14
|
-
s.authors = ["Mat
|
|
14
|
+
s.authors = ["Mat Trudel", "Grant McInnes"]
|
|
15
15
|
s.add_dependency 'activesupport'
|
|
16
16
|
end
|
|
17
17
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.4
|
data/menutree.gemspec
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{menutree}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Mat
|
|
11
|
+
s.authors = ["Mat Trudel", "Grant McInnes"]
|
|
12
12
|
s.date = %q{2010-03-16}
|
|
13
13
|
s.description = %q{Menutree is a framework for presenting a recursive menu shell on the command
|
|
14
14
|
line, inspired by the CLI found in Cisco IOS and similar products}
|
|
15
15
|
s.email = %q{mat@geeky.net}
|
|
16
16
|
s.extra_rdoc_files = [
|
|
17
|
-
"README"
|
|
17
|
+
"README.md"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".gitignore",
|
|
21
|
-
"README",
|
|
21
|
+
"README.md",
|
|
22
22
|
"Rakefile",
|
|
23
23
|
"VERSION",
|
|
24
24
|
"lib/base.rb",
|
metadata
CHANGED
|
@@ -5,11 +5,11 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.0.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
|
-
- Mat
|
|
12
|
+
- Mat Trudel
|
|
13
13
|
- Grant McInnes
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
@@ -39,10 +39,10 @@ executables: []
|
|
|
39
39
|
extensions: []
|
|
40
40
|
|
|
41
41
|
extra_rdoc_files:
|
|
42
|
-
- README
|
|
42
|
+
- README.md
|
|
43
43
|
files:
|
|
44
44
|
- .gitignore
|
|
45
|
-
- README
|
|
45
|
+
- README.md
|
|
46
46
|
- Rakefile
|
|
47
47
|
- VERSION
|
|
48
48
|
- lib/base.rb
|