commando 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Wesley Beary
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,28 @@
1
+ = commando
2
+
3
+ Tools for command line interfacing
4
+
5
+ == Copyright
6
+
7
+ (The MIT License)
8
+
9
+ Copyright (c) 2009 {geemus (Wesley Beary)}[http://github.com/geemus]
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining
12
+ a copy of this software and associated documentation files (the
13
+ "Software"), to deal in the Software without restriction, including
14
+ without limitation the rights to use, copy, modify, merge, publish,
15
+ distribute, sublicense, and/or sell copies of the Software, and to
16
+ permit persons to whom the Software is furnished to do so, subject to
17
+ the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be
20
+ included in all copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,49 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "commando"
8
+ gem.summary = %Q{Ruby CLI tools}
9
+ gem.description = %Q{Tools for command line interfacing}
10
+ gem.email = "geemus@gmail.com"
11
+ gem.homepage = "http://github.com/geemus/commando"
12
+ gem.authors = ["Wesley Beary"]
13
+ gem.add_development_dependency "shindo", ">= 0"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'shindo/rake'
22
+ Shindo::Rake.new
23
+
24
+ begin
25
+ require 'rcov/rcovtask'
26
+ Rcov::RcovTask.new do |tests|
27
+ tests.libs << 'tests'
28
+ tests.pattern = 'tests/**/*_tests.rb'
29
+ tests.verbose = true
30
+ end
31
+ rescue LoadError
32
+ task :rcov do
33
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
34
+ end
35
+ end
36
+
37
+ task :tests => :check_dependencies
38
+
39
+ task :default => :tests
40
+
41
+ require 'rake/rdoctask'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "commando #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{commando}
8
+ s.version = "0.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Wesley Beary"]
12
+ s.date = %q{2009-11-22}
13
+ s.description = %q{Tools for command line interfacing}
14
+ s.email = %q{geemus@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "commando.gemspec",
27
+ "lib/commando.rb",
28
+ "tests/commando_tests.rb",
29
+ "tests/tests_helper.rb"
30
+ ]
31
+ s.homepage = %q{http://github.com/geemus/commando}
32
+ s.rdoc_options = ["--charset=UTF-8"]
33
+ s.require_paths = ["lib"]
34
+ s.rubygems_version = %q{1.3.5}
35
+ s.summary = %q{Ruby CLI tools}
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
42
+ s.add_development_dependency(%q<shindo>, [">= 0"])
43
+ else
44
+ s.add_dependency(%q<shindo>, [">= 0"])
45
+ end
46
+ else
47
+ s.add_dependency(%q<shindo>, [">= 0"])
48
+ end
49
+ end
50
+
@@ -0,0 +1,94 @@
1
+ class Commando
2
+
3
+ def self.commands(&block)
4
+ new(&block)
5
+ end
6
+
7
+ def initialize(&block)
8
+ @commands = []
9
+ @descriptions = {}
10
+ if block_given?
11
+ instance_eval(&block)
12
+ end
13
+ @finished = true
14
+ self
15
+ end
16
+
17
+ def command(args, description, &block)
18
+ return if @finished
19
+ args = [*args]
20
+ command = []
21
+ for arg in args
22
+ case arg
23
+ when Regexp
24
+ command << arg.source
25
+ when String
26
+ command << Regexp.escape(arg)
27
+ end
28
+ end
29
+ @commands << [/^#{command.join('\s').squeeze('\s')}$/ix, block]
30
+ @descriptions[command.join(' ').squeeze(' ')] = description
31
+ end
32
+
33
+ def call(*args)
34
+ request = args.join(' ').squeeze(' ').strip
35
+ for command in @commands
36
+ if match = command[0].match(request)
37
+ response = command[1].call(*match.captures)
38
+ break
39
+ end
40
+ end
41
+ unless response
42
+ response = available_commands
43
+ end
44
+ display(response)
45
+ end
46
+
47
+ def available_commands
48
+ display("\nAvailable Commands:\n")
49
+
50
+ data = []
51
+
52
+ for command, description in @descriptions
53
+ data << ["/#{command}/", ' - ', "#{description}"]
54
+ end
55
+
56
+ columns(data)
57
+ end
58
+
59
+ def columns(data)
60
+ widths = []
61
+
62
+ for row in data
63
+ row.length.times do |i|
64
+ widths[i] = [(widths[i] || 0), row[i].length].max
65
+ end
66
+ end
67
+
68
+ table = ''
69
+ data.length.times do |row|
70
+ string = ' '
71
+ data[row].length.times do |column|
72
+ value = data[row][column]
73
+ string << "#{value}#{(' ' * (widths[column] - value.length))}"
74
+ end
75
+ table << string << "\n\n"
76
+ end
77
+
78
+ table.chop!
79
+ end
80
+
81
+ def display(string)
82
+ print(string << "\n")
83
+ end
84
+
85
+ end
86
+
87
+ # commando = Commando.commands do
88
+ # command('foo', 'prints foo') { "foo" }
89
+ # command(['bar', /(\d*)/], 'prints argument') {|arg| arg}
90
+ # end
91
+ #
92
+ # commando.call('foo')
93
+ # commando.call('bar 9')
94
+ # commando.call('baz')
@@ -0,0 +1,8 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/tests_helper')
2
+
3
+ Shindo.tests("Commando") do
4
+ test("fails") do
5
+ "hey buddy, you should probably rename this file and start specing for real"
6
+ false
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'commando'
4
+ require 'rubygems'
5
+ require 'shindo'
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: commando
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Wesley Beary
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-11-22 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: shindo
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: Tools for command line interfacing
26
+ email: geemus@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - commando.gemspec
42
+ - lib/commando.rb
43
+ - tests/commando_tests.rb
44
+ - tests/tests_helper.rb
45
+ has_rdoc: true
46
+ homepage: http://github.com/geemus/commando
47
+ licenses: []
48
+
49
+ post_install_message:
50
+ rdoc_options:
51
+ - --charset=UTF-8
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "0"
59
+ version:
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ version:
66
+ requirements: []
67
+
68
+ rubyforge_project:
69
+ rubygems_version: 1.3.5
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Ruby CLI tools
73
+ test_files: []
74
+