wooga_docopt 0.6.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.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +22 -0
- data/README.md +188 -0
- data/Rakefile +150 -0
- data/docopt.gemspec +85 -0
- data/examples/any_options_example.rb +24 -0
- data/examples/calculator.rb +16 -0
- data/examples/counted_example.rb +22 -0
- data/examples/example_options.rb +44 -0
- data/examples/git_example.rb +44 -0
- data/examples/naval_fate.rb +30 -0
- data/examples/odd_even_example.rb +19 -0
- data/examples/quick_example.rb +16 -0
- data/lib/docopt.rb +670 -0
- data/test/language_agnostic_tester.py +48 -0
- data/test/test_docopt.rb +12 -0
- data/test/testcases.docopt +909 -0
- data/test/testee.rb +12 -0
- metadata +112 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 41ca52f4bf6c08ce53978e44ee76909825998607
|
4
|
+
data.tar.gz: 52f73dc209fe8bb18a351287d5505b6c634d3a6c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5551c334b5f1d296d43f4162b015cd9bd4bb02493aa10205d298cc18075665884e3d8b787f88dbc1d9cdaa09dbfaaf3b0fde9788c1de32ab825e16f48a68d31e
|
7
|
+
data.tar.gz: cae5addd81ac9a9ab98730dda4720581c9896b24eb46a7a88e2022b8daafa469da7441e2c4c83d522de16d5a4a61eb1759add5e4458a18655b907ddba71ed976
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Vladimir Keleshev <vladimir@keleshev.com>
|
2
|
+
Blake Williams <code@shabbyrobe.org>
|
3
|
+
Alex Speller <alex@alexspeller.com>
|
4
|
+
Nima Johari
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
7
|
+
this software and associated documentation files (the "Software"), to deal in
|
8
|
+
the Software without restriction, including without limitation the rights to
|
9
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
10
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
11
|
+
so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
14
|
+
copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
22
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,188 @@
|
|
1
|
+
`docopt.rb` – command line option parser, that will make you smile
|
2
|
+
===============================================================================
|
3
|
+
|
4
|
+
[](https://travis-ci.org/wooga/wooga.docopt.rb)
|
5
|
+
|
6
|
+
This is the wooga ruby port of [`docopt`](https://github.com/docopt/docopt),
|
7
|
+
the awesome option parser written originally in python.
|
8
|
+
|
9
|
+
> New in version 0.6.0.1:
|
10
|
+
>
|
11
|
+
> New argument options_first, disallows interspersing options and arguments. If you supply options_first=True to docopt, it will interpret all arguments as positional arguments after first positional argument.
|
12
|
+
> If option with argument could be repeated, its default value will be interpreted as space-separated list. E.g. with [default: ./here ./there] will be interpreted as ['./here', './there'].
|
13
|
+
|
14
|
+
Isn't it awesome how `optparse` and `argparse` generate help messages
|
15
|
+
based on your code?!
|
16
|
+
|
17
|
+
*Hell no!* You know what's awesome? It's when the option parser *is* generated
|
18
|
+
based on the beautiful help message that you write yourself! This way
|
19
|
+
you don't need to write this stupid repeatable parser-code, and instead can
|
20
|
+
write only the help message--*the way you want it*.
|
21
|
+
|
22
|
+
`docopt` helps you create most beautiful command-line interfaces *easily*:
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
require "docopt"
|
26
|
+
doc = <<DOCOPT
|
27
|
+
Naval Fate.
|
28
|
+
|
29
|
+
Usage:
|
30
|
+
#{__FILE__} ship new <name>...
|
31
|
+
#{__FILE__} ship <name> move <x> <y> [--speed=<kn>]
|
32
|
+
#{__FILE__} ship shoot <x> <y>
|
33
|
+
#{__FILE__} mine (set|remove) <x> <y> [--moored|--drifting]
|
34
|
+
#{__FILE__} -h | --help
|
35
|
+
#{__FILE__} --version
|
36
|
+
|
37
|
+
Options:
|
38
|
+
-h --help Show this screen.
|
39
|
+
--version Show version.
|
40
|
+
--speed=<kn> Speed in knots [default: 10].
|
41
|
+
--moored Moored (anchored) mine.
|
42
|
+
--drifting Drifting mine.
|
43
|
+
|
44
|
+
DOCOPT
|
45
|
+
|
46
|
+
begin
|
47
|
+
require "pp"
|
48
|
+
pp Docopt::docopt(doc)
|
49
|
+
rescue Docopt::Exit => e
|
50
|
+
puts e.message
|
51
|
+
end
|
52
|
+
```
|
53
|
+
|
54
|
+
Beat that! The option parser is generated based on the docstring above that is
|
55
|
+
passed to `docopt` function. `docopt` parses the usage pattern
|
56
|
+
(`Usage: ...`) and option descriptions (lines starting with dash "`-`") and
|
57
|
+
ensures that the program invocation matches the usage pattern; it parses
|
58
|
+
options, arguments and commands based on that. The basic idea is that
|
59
|
+
*a good help message has all necessary information in it to make a parser*.
|
60
|
+
|
61
|
+
Installation
|
62
|
+
===============================================================================
|
63
|
+
|
64
|
+
Docopt is available via rubygems:
|
65
|
+
|
66
|
+
gem install docopt
|
67
|
+
|
68
|
+
Alternatively, you can just drop `lib/docopt.rb` file into your project--it is
|
69
|
+
self-contained. [Get source on github](http://github.com/docopt/docopt.rb).
|
70
|
+
|
71
|
+
`docopt` has been confirmed to work with 1.8.7p370 and 1.9.3p194. If you have
|
72
|
+
noticed it working (or not working) with an earlier version, please raise an
|
73
|
+
issue and we will investigate support.
|
74
|
+
|
75
|
+
API
|
76
|
+
===============================================================================
|
77
|
+
|
78
|
+
`Docopt` takes 1 required and 1 optional argument:
|
79
|
+
|
80
|
+
- `doc` should be a string that
|
81
|
+
describes **options** in a human-readable format, that will be parsed to create
|
82
|
+
the option parser. The simple rules of how to write such a docstring
|
83
|
+
(in order to generate option parser from it successfully) are given in the next
|
84
|
+
section. Here is a quick example of such a string:
|
85
|
+
|
86
|
+
Usage: your_program.rb [options]
|
87
|
+
|
88
|
+
-h --help Show this.
|
89
|
+
-v --verbose Print more text.
|
90
|
+
--quiet Print less text.
|
91
|
+
-o FILE Specify output file [default: ./test.txt].
|
92
|
+
|
93
|
+
|
94
|
+
The optional second argument contains a hash of additional data to influence
|
95
|
+
docopt. The following keys are supported:
|
96
|
+
|
97
|
+
- `help`, by default `true`, specifies whether the parser should automatically
|
98
|
+
print the usage-message (supplied as `doc`) in case `-h` or `--help` options
|
99
|
+
are encountered. After showing the usage-message, the program will terminate.
|
100
|
+
If you want to handle `-h` or `--help` options manually (as all other options),
|
101
|
+
set `help=false`.
|
102
|
+
|
103
|
+
- `version`, by default `nil`, is an optional argument that specifies the
|
104
|
+
version of your program. If supplied, then, if the parser encounters
|
105
|
+
`--version` option, it will print the supplied version and terminate.
|
106
|
+
`version` could be any printable object, but most likely a string,
|
107
|
+
e.g. `'2.1.0rc1'`.
|
108
|
+
|
109
|
+
Note, when `docopt` is set to automatically handle `-h`, `--help` and
|
110
|
+
`--version` options, you still need to mention them in the options description
|
111
|
+
(`doc`) for your users to know about them.
|
112
|
+
|
113
|
+
The **return** value is just a dictionary with options, arguments and commands,
|
114
|
+
with keys spelled exactly like in a help message
|
115
|
+
(long versions of options are given priority). For example, if you invoke
|
116
|
+
the top example as::
|
117
|
+
|
118
|
+
naval_fate.rb ship Guardian move 100 150 --speed=15
|
119
|
+
|
120
|
+
the return dictionary will be::
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
{"ship"=>true,
|
124
|
+
"new"=>false,
|
125
|
+
"<name>"=>["Guardian"],
|
126
|
+
"move"=>true,
|
127
|
+
"<x>"=>"100",
|
128
|
+
"<y>"=>"150",
|
129
|
+
"--speed"=>"15",
|
130
|
+
"shoot"=>false,
|
131
|
+
"mine"=>false,
|
132
|
+
"set"=>false,
|
133
|
+
"remove"=>false,
|
134
|
+
"--moored"=>false,
|
135
|
+
"--drifting"=>false,
|
136
|
+
"--help"=>false,
|
137
|
+
"--version"=>false}
|
138
|
+
```
|
139
|
+
|
140
|
+
Help message format
|
141
|
+
===============================================================================
|
142
|
+
|
143
|
+
docopt.rb follows the docopt help message format.
|
144
|
+
You can find more details at
|
145
|
+
[official docopt git repo](https://github.com/docopt/docopt#help-message-format)
|
146
|
+
|
147
|
+
|
148
|
+
Examples
|
149
|
+
-------------------------------------------------------------------------------
|
150
|
+
|
151
|
+
We have an extensive list of
|
152
|
+
[examples](https://github.com/docopt/docopt.rb/tree/master/examples)
|
153
|
+
which cover every aspect of functionality of `docopt`. Try them out,
|
154
|
+
read the source if in doubt.
|
155
|
+
|
156
|
+
Data validation
|
157
|
+
-------------------------------------------------------------------------------
|
158
|
+
|
159
|
+
`docopt` does one thing and does it well: it implements your command-line
|
160
|
+
interface. However it does not validate the input data. We are looking
|
161
|
+
for ruby validation libraries to make your option parsing experiene
|
162
|
+
even more awesome!
|
163
|
+
If you've got any suggestions or think your awesome schema validation gem
|
164
|
+
fits well with `docopt.rb`, open an issue on github and enjoy the eternal glory!
|
165
|
+
|
166
|
+
Contribution
|
167
|
+
===============================================================================
|
168
|
+
|
169
|
+
We would *love* to hear what you think about `docopt.rb`.
|
170
|
+
Contribute, make pull requrests, report bugs, suggest ideas and discuss
|
171
|
+
`docopt.rb` on
|
172
|
+
[issues page](http://github.com/docopt/docopt.rb/issues).
|
173
|
+
|
174
|
+
If you want to discuss the original `docopt` reference,
|
175
|
+
point to [it's home](http://github.com/docopt/docopt) or
|
176
|
+
drop a line directly to vladimir@keleshev.com!
|
177
|
+
|
178
|
+
Porting `docopt` to other languages
|
179
|
+
===============================================================================
|
180
|
+
|
181
|
+
Docopt is an interlinguistic (?) effort,
|
182
|
+
and this is the ruby port of `docopt`.
|
183
|
+
We coordinate our efforts with docopt community and try our best to
|
184
|
+
keep in sync with the python reference.
|
185
|
+
|
186
|
+
Docopt community *loves* to hear what you think about `docopt`, `docopt.rb`
|
187
|
+
and other sister projects on docopt's
|
188
|
+
[issues page](http://github.com/docopt/docopt/issues).
|
data/Rakefile
ADDED
@@ -0,0 +1,150 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
require 'date'
|
4
|
+
|
5
|
+
#############################################################################
|
6
|
+
#
|
7
|
+
# Helper functions
|
8
|
+
#
|
9
|
+
#############################################################################
|
10
|
+
|
11
|
+
def name
|
12
|
+
@name ||= Dir['*.gemspec'].first.split('.').first
|
13
|
+
end
|
14
|
+
|
15
|
+
def version
|
16
|
+
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
|
17
|
+
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
|
18
|
+
end
|
19
|
+
|
20
|
+
def date
|
21
|
+
Date.today.to_s
|
22
|
+
end
|
23
|
+
|
24
|
+
def rubyforge_project
|
25
|
+
name
|
26
|
+
end
|
27
|
+
|
28
|
+
def gemspec_file
|
29
|
+
"#{name}.gemspec"
|
30
|
+
end
|
31
|
+
|
32
|
+
def gem_file
|
33
|
+
"#{name}-#{version}.gem"
|
34
|
+
end
|
35
|
+
|
36
|
+
def replace_header(head, header_name)
|
37
|
+
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
38
|
+
end
|
39
|
+
|
40
|
+
#############################################################################
|
41
|
+
#
|
42
|
+
# Standard tasks
|
43
|
+
#
|
44
|
+
#############################################################################
|
45
|
+
|
46
|
+
task :default => :test
|
47
|
+
|
48
|
+
require 'rake/testtask'
|
49
|
+
Rake::TestTask.new(:test) do |test|
|
50
|
+
test.libs << 'lib' << 'test'
|
51
|
+
test.pattern = 'test/**/test_*.rb'
|
52
|
+
test.verbose = true
|
53
|
+
end
|
54
|
+
|
55
|
+
desc "Generate RCov test coverage and open in your browser"
|
56
|
+
task :coverage do
|
57
|
+
require 'rcov'
|
58
|
+
sh "rm -fr coverage"
|
59
|
+
sh "rcov test/test_*.rb"
|
60
|
+
sh "open coverage/index.html"
|
61
|
+
end
|
62
|
+
|
63
|
+
require 'rdoc/task'
|
64
|
+
Rake::RDocTask.new do |rdoc|
|
65
|
+
rdoc.rdoc_dir = 'rdoc'
|
66
|
+
rdoc.title = "#{name} #{version}"
|
67
|
+
rdoc.rdoc_files.include('README*')
|
68
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
69
|
+
end
|
70
|
+
|
71
|
+
desc "Open an irb session preloaded with this library"
|
72
|
+
task :console do
|
73
|
+
sh "irb -rubygems -r ./lib/#{name}.rb"
|
74
|
+
end
|
75
|
+
|
76
|
+
#############################################################################
|
77
|
+
#
|
78
|
+
# Custom tasks (add your own tasks here)
|
79
|
+
#
|
80
|
+
#############################################################################
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
#############################################################################
|
85
|
+
#
|
86
|
+
# Packaging tasks
|
87
|
+
#
|
88
|
+
#############################################################################
|
89
|
+
|
90
|
+
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
|
91
|
+
task :release => :build do
|
92
|
+
unless `git branch` =~ /^\* master$/
|
93
|
+
puts "You must be on the master branch to release!"
|
94
|
+
exit!
|
95
|
+
end
|
96
|
+
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
97
|
+
sh "git tag v#{version}"
|
98
|
+
sh "git push origin master"
|
99
|
+
sh "git push origin v#{version}"
|
100
|
+
sh "gem push pkg/#{name}-#{version}.gem"
|
101
|
+
end
|
102
|
+
|
103
|
+
desc "Build #{gem_file} into the pkg directory"
|
104
|
+
task :build => :gemspec do
|
105
|
+
sh "mkdir -p pkg"
|
106
|
+
sh "gem build #{gemspec_file}"
|
107
|
+
sh "mv #{gem_file} pkg"
|
108
|
+
end
|
109
|
+
|
110
|
+
desc "Generate #{gemspec_file}"
|
111
|
+
task :gemspec => :validate do
|
112
|
+
# read spec file and split out manifest section
|
113
|
+
spec = File.read(gemspec_file)
|
114
|
+
head, manifest, tail = spec.split(" # = MANIFEST =\n")
|
115
|
+
|
116
|
+
# replace name version and date
|
117
|
+
replace_header(head, :name)
|
118
|
+
replace_header(head, :version)
|
119
|
+
replace_header(head, :date)
|
120
|
+
#comment this out if your rubyforge_project has a different name
|
121
|
+
replace_header(head, :rubyforge_project)
|
122
|
+
|
123
|
+
# determine file list from git ls-files
|
124
|
+
files = `git ls-files`.
|
125
|
+
split("\n").
|
126
|
+
sort.
|
127
|
+
reject { |file| file =~ /^\./ }.
|
128
|
+
reject { |file| file =~ /^(rdoc|pkg)/ }.
|
129
|
+
map { |file| " #{file}" }.
|
130
|
+
join("\n")
|
131
|
+
|
132
|
+
# piece file back together and write
|
133
|
+
manifest = " s.files = %w[\n#{files}\n ]\n"
|
134
|
+
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
|
135
|
+
File.open(gemspec_file, 'w') { |io| io.write(spec) }
|
136
|
+
puts "Updated #{gemspec_file}"
|
137
|
+
end
|
138
|
+
|
139
|
+
desc "Validate #{gemspec_file}"
|
140
|
+
task :validate do
|
141
|
+
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
|
142
|
+
unless libfiles.empty?
|
143
|
+
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
|
144
|
+
exit!
|
145
|
+
end
|
146
|
+
unless Dir['VERSION*'].empty?
|
147
|
+
puts "A `VERSION` file at root level violates Gem best practices."
|
148
|
+
exit!
|
149
|
+
end
|
150
|
+
end
|
data/docopt.gemspec
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
## This is the rakegem gemspec template. Make sure you read and understand
|
2
|
+
## all of the comments. Some sections require modification, and others can
|
3
|
+
## be deleted if you don't need them. Once you understand the contents of
|
4
|
+
## this file, feel free to delete any comments that begin with two hash marks.
|
5
|
+
## You can find comprehensive Gem::Specification documentation, at
|
6
|
+
## http://docs.rubygems.org/read/chapter/20
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.specification_version = 2 if s.respond_to? :specification_version=
|
9
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
10
|
+
s.rubygems_version = '1.3.5'
|
11
|
+
s.required_ruby_version = '>= 1.9.3'
|
12
|
+
## Leave these as is they will be modified for you by the rake gemspec task.
|
13
|
+
## If your rubyforge_project name is different, then edit it and comment out
|
14
|
+
## the sub! line in the Rakefile
|
15
|
+
s.name = 'wooga_docopt'
|
16
|
+
s.version = '0.6.0.1'
|
17
|
+
s.date = '2016-10-03'
|
18
|
+
|
19
|
+
## Make sure your summary is short. The description may be as long
|
20
|
+
## as you like.
|
21
|
+
s.summary = "A command line option parser, that will make you smile."
|
22
|
+
s.description = "Isn't it awesome how `optparse` and other option parsers generate help and usage-messages based on your code?! Hell no!\nYou know what's awesome? It's when the option parser *is* generated based on the help and usage-message that you write in a docstring! That's what docopt does!"
|
23
|
+
|
24
|
+
## List the primary authors. If there are a bunch of authors, it's probably
|
25
|
+
## better to set the email to an email list or something. If you don't have
|
26
|
+
## a custom homepage, consider using your GitHub URL or the like.
|
27
|
+
s.authors = ["Blake Williams", "Vladimir Keleshev", "Alex Speller", "Nima Johari"]
|
28
|
+
s.email = "code@shabbyrobe.org"
|
29
|
+
s.homepage = "http://github.com/docopt/docopt.rb"
|
30
|
+
s.license = 'MIT'
|
31
|
+
## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
|
32
|
+
## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
|
33
|
+
s.require_paths = %w[lib]
|
34
|
+
|
35
|
+
## This sections is only necessary if you have C extensions.
|
36
|
+
# s.require_paths << 'ext'
|
37
|
+
# s.extensions = %w[ext/extconf.rb]
|
38
|
+
|
39
|
+
## If your gem includes any executables, list them here.
|
40
|
+
# s.executables = ["name"]
|
41
|
+
|
42
|
+
## Specify any RDoc options here. You'll want to add your README and
|
43
|
+
## LICENSE files to the extra_rdoc_files list.
|
44
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
45
|
+
s.extra_rdoc_files = %w[README.md LICENSE]
|
46
|
+
|
47
|
+
## List your runtime dependencies here. Runtime dependencies are those
|
48
|
+
## that are needed for an end user to actually USE your code.
|
49
|
+
# s.add_dependency('DEPNAME', [">= 1.1.0", "< 2.0.0"])
|
50
|
+
|
51
|
+
## List your development dependencies here. Development dependencies are
|
52
|
+
## those that are only needed during development
|
53
|
+
s.add_development_dependency('rake')
|
54
|
+
s.add_development_dependency('json', "~> 1.8")
|
55
|
+
s.add_development_dependency('test-unit', "~> 3.2")
|
56
|
+
## Leave this section as-is. It will be automatically generated from the
|
57
|
+
## contents of your Git repository via the gemspec task. DO NOT REMOVE
|
58
|
+
## THE MANIFEST COMMENTS, they are used as delimiters by the task.
|
59
|
+
# = MANIFEST =
|
60
|
+
s.files = %w[
|
61
|
+
Gemfile
|
62
|
+
LICENSE
|
63
|
+
README.md
|
64
|
+
Rakefile
|
65
|
+
docopt.gemspec
|
66
|
+
examples/any_options_example.rb
|
67
|
+
examples/calculator.rb
|
68
|
+
examples/counted_example.rb
|
69
|
+
examples/example_options.rb
|
70
|
+
examples/git_example.rb
|
71
|
+
examples/naval_fate.rb
|
72
|
+
examples/odd_even_example.rb
|
73
|
+
examples/quick_example.rb
|
74
|
+
lib/docopt.rb
|
75
|
+
test/language_agnostic_tester.py
|
76
|
+
test/test_docopt.rb
|
77
|
+
test/testcases.docopt
|
78
|
+
test/testee.rb
|
79
|
+
]
|
80
|
+
# = MANIFEST =
|
81
|
+
|
82
|
+
## Test files will be grabbed from the file list. Make sure the path glob
|
83
|
+
## matches what you actually use.
|
84
|
+
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
|
85
|
+
end
|