gem_file_conflict_checker 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.2.3
@@ -18,6 +18,10 @@ class ConflictChecker
18
18
  next
19
19
  end
20
20
 
21
+ if file =~ /autotest\/discover/ # ignore autotest "plugin" files
22
+ next
23
+ end
24
+
21
25
  if file =~ /(.rb|.so)$/
22
26
  file = file.split('.')[0..-2].join('.') # strip off .rb .so
23
27
  else
@@ -59,4 +59,9 @@ describe "conflict plugin" do
59
59
  @a.check(conflict).should == {}
60
60
  end
61
61
 
62
+ it "should ignore autotest/discover" do
63
+ conflict = {:lib1 => ['lib/autotest/discover.rb'], :lib2 => ['lib/autotest/discover.rb']}
64
+ @a.check(conflict).should == {}
65
+ end
66
+
62
67
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_file_conflict_checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - rdp
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-02 00:00:00 -07:00
12
+ date: 2010-01-28 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15