-
Notifications
You must be signed in to change notification settings - Fork 1
/
History.txt
73 lines (56 loc) · 2.89 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
=== 1.1.2 / 2009-01-24
* Minor Changes
* Changed from Hoe to Jeweler
=== 1.1.1 / 2008-11-25
* Minor Changes
* Dir.taglob will now act like a regular glob if tags passed in is nil
=== 1.1.0 / 2008-11-17
* New Feature
* TagHtmlFormatter opens up the RSpec HTML Formatter to print the tags environment variable which useful if you do something like:
$ rake spec_tag tags="foo,bar,baz" SPEC_OPTS='-r rubygems,taglob/spec/tag_html_formatter'
=== 1.0.2 / 2008-11-04
* Minor Changes
* Fixed a small bug where rake tasks could not be required unless all of taglob was required
=== 1.0.1 / 2008-10-15
* Minor Changes
* Updated Documentation to be more accurate
=== 1.0.0 / 2008-10-08
* Important changes
* Dir.taglob('**/*.rb','tags,for,the,win') <- Will produce an array of files that contain all these tags(AND)
* Dir.taglob('**/*.rb','tags|or|the|win') <- Will produce an array of files that contain any of these tags(OR)
* rake spec SPEC_OPTS='-f specdoc' <- More infroz(this obviously needs to be run from the gem directory :P)
* taglob binary!
* $ taglob <dirname> <- produces a list of files in <dirname> with their respective tags
* $ taglob <file> <- produces a list of tags for that file
* Rake tasks!
* You can now require 'taglob/rake/tasks' in your Rakefile to get test_tag and spec_tag tasks that would be used like this:
* $ rake spec_tag tags="for,the,win"
* $ rake test_tag tags="foo|bar"
* You can also specify your own TestTagTasks in your Rakefile:
require 'taglob/rake'
Taglob::Rake::SpecTagsTask.new :spec_regression do |t|
t.pattern = 'spec/**/*_spec.rb'
t.tags = "regression|smoke"
end
Taglob::Rake::TestTagsTask.new :test_regression do |t|
t.pattern = 'test/**/test_*.rb'
t.tags = "regression|smoke"
end
* CheckTagsTask will check all tags in a glob pattern against a valid list of tags
require 'taglob/rake'
task = Taglob::Rake::CheckTagsTask.new do |t|
t.pattern = 'spec/**/*.rb'
t.valid_tag_source = 'config/valid_tags.txt'
end
* Thanks:
- NolanEvans[http://github.com/nolman] did the majority of this rewrite.
- DrewOlson[http://github.com/dfg59] still doesn't have commit rights.
- CharleyBaker[http://github.com/charley], RadhikaPothukuchi, and RamaKarri were all very helpful in pairing with NolanEvans and AdamAnderson[http://github.com/scudco] in getting this gem out.
=== 0.1.0 / 2008-05-19
* Important changes
* Taglob now does ANDing logic rather than ORing
This is really how it should have been to begin with. I just noobed it up is all.
In version 0.0.1 if you did Dir.taglob('**/*.rb','foo','bar') it would select files as long they contained one of the tags(foo OR bar). In version 0.1.0 it will only select files which contain both tags(foo AND bar).
=== 0.0.1 / 2008-05-14
* Taglob "released"
* Drew bugged me enough to finish the specs