1 2 3 4 5 6 7 |
# The set of substitutions to transform a spec filename # into a tag filename. set :tags_patterns, [ [%r(spec/ruby/), 'spec/frozen/'], [%r(spec/), 'spec/tags/'], [/_spec.rb$/, '_tags.txt'] ] |
1 2 3 4 5 6 7 |
# The set of substitutions to transform a spec filename # into a tag filename. set :tags_patterns, [ [%r(spec/ruby/), 'spec/frozen/'], [%r(spec/), 'spec/tags/'], [/_spec.rb$/, '_tags.txt'] ] |