como 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/LICENSE +20 -0
- data/README.rdoc +15 -0
- data/Rakefile +24 -0
- data/lib/como.rb +1041 -0
- data/test/test_como.rb +344 -0
- metadata +56 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2013 tero.isannainen@gmail.com
|
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.
|
data/README.rdoc
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
= Como
|
2
|
+
|
3
|
+
== Description
|
4
|
+
|
5
|
+
Como provides low manifest command line option parsing and
|
6
|
+
deployment. The command line options are described in compact table
|
7
|
+
format and option values are stored to conveniently named
|
8
|
+
properties. Como provides the command usage information based on the
|
9
|
+
option table (plus program info) automatically. Como supports also
|
10
|
+
checking for option combinations using a simple DSL.
|
11
|
+
|
12
|
+
== Documentation
|
13
|
+
|
14
|
+
Main documentation is generated from Como source. Test file (in "test"
|
15
|
+
directory) can be used as an example on how the features are used.
|
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'rake/testtask'
|
2
|
+
|
3
|
+
Rake::TestTask.new do |t|
|
4
|
+
t.libs << 'test'
|
5
|
+
end
|
6
|
+
|
7
|
+
desc "Run tests"
|
8
|
+
task :default => :test
|
9
|
+
|
10
|
+
task :cleanup_test do
|
11
|
+
sh "rm -rf test/test"
|
12
|
+
end
|
13
|
+
|
14
|
+
task :build do
|
15
|
+
sh "gem build como.gemspec"
|
16
|
+
end
|
17
|
+
|
18
|
+
task :publish do
|
19
|
+
if Dir.glob('como-*gem').length == 1
|
20
|
+
sh "gem push como*.gem"
|
21
|
+
else
|
22
|
+
raise "Multiple gems in the directory..."
|
23
|
+
end
|
24
|
+
end
|