op 0.0.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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +1 -0
- data/lib/op.rb +8 -0
- data/lib/op/parser.rb +50 -0
- data/lib/op/version.rb +3 -0
- data/op.gemspec +21 -0
- data/test/op/test_parser.rb +97 -0
- metadata +73 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Andrew Vos
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Op
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'op'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install op
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
30
|
+
|
31
|
+
## Recognition
|
32
|
+
Thanks to judofyr and injekt for the gem name!
|
33
|
+
Note: Gem name changed to "op" from "mop" after rking whined that he was about to release a gem called "mop"
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/op.rb
ADDED
data/lib/op/parser.rb
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
module Op
|
2
|
+
class Parser
|
3
|
+
def initialize klass
|
4
|
+
@klass = klass
|
5
|
+
end
|
6
|
+
|
7
|
+
def parse arguments
|
8
|
+
command = find_command(arguments.shift)
|
9
|
+
|
10
|
+
result = {}
|
11
|
+
until arguments.empty?
|
12
|
+
part = arguments.shift
|
13
|
+
if part.start_with?("--")
|
14
|
+
long = part.gsub(/^\-\-/, "")
|
15
|
+
argument = command.arguments.find {|a| a[:long] == long}
|
16
|
+
if argument[:parameter]
|
17
|
+
parameter = arguments.shift
|
18
|
+
raise "Argument --#{argument[:long]} takes a parameter" if parameter.nil?
|
19
|
+
result[argument[:name]] = parameter
|
20
|
+
else
|
21
|
+
result[argument[:name]] = true
|
22
|
+
end
|
23
|
+
elsif part.start_with?("-")
|
24
|
+
part_parts = part.gsub(/^\-/, "").split("")
|
25
|
+
part_parts.each_with_index do |part_part, index|
|
26
|
+
argument = command.arguments.find{|a| a[:short] == part_part}
|
27
|
+
if argument[:parameter]
|
28
|
+
raise "Argument -#{argument[:short]} takes a parameter, so should come last" if index != part_parts.size - 1
|
29
|
+
parameter = arguments.shift
|
30
|
+
raise "Argument -#{argument[:short]} takes a parameter" if parameter.nil?
|
31
|
+
result[argument[:name]] = parameter
|
32
|
+
else
|
33
|
+
result[argument[:name]] = true
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
result
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
def commands
|
43
|
+
@klass.constants.select {|c| @klass.const_get(c).is_a? Class}.map{|c| @klass.const_get(c)}
|
44
|
+
end
|
45
|
+
|
46
|
+
def find_command name
|
47
|
+
commands.find {|c| c.name.split("::").last.downcase == "#{name.downcase}command"}
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
data/lib/op/version.rb
ADDED
data/op.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'op/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "op"
|
8
|
+
gem.version = Op::VERSION
|
9
|
+
gem.authors = ["Andrew Vos"]
|
10
|
+
gem.email = ["andrew.vos@gmail.com"]
|
11
|
+
gem.description = %q{ERMAHGERD ARPTERN PERSING}
|
12
|
+
gem.summary = %q{ERMAHGERD ARPTERN PERSING}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
|
20
|
+
gem.add_development_dependency "minitest"
|
21
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require "minitest/unit"
|
2
|
+
require "minitest/autorun"
|
3
|
+
require "minitest/pride"
|
4
|
+
|
5
|
+
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "../../lib")))
|
6
|
+
require "op/parser"
|
7
|
+
|
8
|
+
module Op
|
9
|
+
class TestParser < MiniTest::Unit::TestCase
|
10
|
+
class Example
|
11
|
+
class SimpleCommand
|
12
|
+
class << self
|
13
|
+
attr_reader :arguments
|
14
|
+
|
15
|
+
def add_argument argument
|
16
|
+
@arguments ||= []
|
17
|
+
@arguments << argument
|
18
|
+
end
|
19
|
+
|
20
|
+
def clear_arguments
|
21
|
+
@arguments = []
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def setup
|
28
|
+
Example::SimpleCommand.clear_arguments
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_parses_short_arguments
|
32
|
+
Example::SimpleCommand.add_argument({:name => :simple, :short => "s"})
|
33
|
+
result = Parser.new(Example).parse(["simple", "-s"])
|
34
|
+
assert_equal true, result[:simple]
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_parses_grouped_short_arguments
|
38
|
+
Example::SimpleCommand.add_argument({:name => :meh1, :short => "a"})
|
39
|
+
Example::SimpleCommand.add_argument({:name => :meh2, :short => "b"})
|
40
|
+
result = Parser.new(Example).parse(["simple", "-ab"])
|
41
|
+
assert_equal true, result[:meh1]
|
42
|
+
assert_equal true, result[:meh2]
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_parses_short_arguments_with_parameter
|
46
|
+
Example::SimpleCommand.add_argument({:name => :param1, :short => "p", :parameter => true})
|
47
|
+
result = Parser.new(Example).parse(["simple", "-p", "param value"])
|
48
|
+
assert_equal "param value", result[:param1]
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_crashes_if_parametered_short_argument_has_no_parameter
|
52
|
+
Example::SimpleCommand.add_argument({:name => :param1, :short => "p", :parameter => true})
|
53
|
+
error = nil
|
54
|
+
begin
|
55
|
+
result = Parser.new(Example).parse(["simple", "-p"])
|
56
|
+
rescue Exception => exception
|
57
|
+
error = exception
|
58
|
+
end
|
59
|
+
assert_equal "Argument -p takes a parameter", exception.message
|
60
|
+
end
|
61
|
+
|
62
|
+
def test_crashes_if_parametered_short_argument_is_not_last_in_a_grouped_list
|
63
|
+
error = nil
|
64
|
+
Example::SimpleCommand.add_argument({:name => :param1, :short => "p", :parameter => true})
|
65
|
+
Example::SimpleCommand.add_argument({:name => :param2, :short => "r"})
|
66
|
+
begin
|
67
|
+
result = Parser.new(Example).parse(["simple", "-pr"])
|
68
|
+
rescue Exception => exception
|
69
|
+
error = exception
|
70
|
+
end
|
71
|
+
assert_equal "Argument -p takes a parameter, so should come last", exception.message
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_parses_long_arguments
|
75
|
+
Example::SimpleCommand.add_argument({:name => :simple, :long => "simple"})
|
76
|
+
result = Parser.new(Example).parse(["simple", "--simple"])
|
77
|
+
assert_equal true, result[:simple]
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_parses_long_arguments_with_parameters
|
81
|
+
Example::SimpleCommand.add_argument({:name => :param1, :long => "param1", :parameter => true})
|
82
|
+
result = Parser.new(Example).parse(["simple", "--param1", "param value"])
|
83
|
+
assert_equal "param value", result[:param1]
|
84
|
+
end
|
85
|
+
|
86
|
+
def test_crashes_if_parametered_long_argument_has_no_parameter
|
87
|
+
Example::SimpleCommand.add_argument({:name => :param1, :long => "param1", :parameter => true})
|
88
|
+
error = nil
|
89
|
+
begin
|
90
|
+
result = Parser.new(Example).parse(["simple", "--param1"])
|
91
|
+
rescue Exception => exception
|
92
|
+
error = exception
|
93
|
+
end
|
94
|
+
assert_equal "Argument --param1 takes a parameter", exception.message
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: op
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Andrew Vos
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-01-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: minitest
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: ERMAHGERD ARPTERN PERSING
|
31
|
+
email:
|
32
|
+
- andrew.vos@gmail.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE.txt
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- lib/op.rb
|
43
|
+
- lib/op/parser.rb
|
44
|
+
- lib/op/version.rb
|
45
|
+
- op.gemspec
|
46
|
+
- test/op/test_parser.rb
|
47
|
+
homepage: ''
|
48
|
+
licenses: []
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ! '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 1.8.23
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: ERMAHGERD ARPTERN PERSING
|
71
|
+
test_files:
|
72
|
+
- test/op/test_parser.rb
|
73
|
+
has_rdoc:
|