gem_file_conflict_checker 0.2.1 → 0.2.2
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/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/conflict_checker.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
data/lib/conflict_checker.rb
CHANGED
@@ -42,7 +42,7 @@ class ConflictChecker
|
|
42
42
|
all = {}; Gem.source_index.latest_specs.map{|s| all[s.name] = s.lib_files}
|
43
43
|
collisions = ConflictChecker.new.check all
|
44
44
|
if collisions.length > 0
|
45
|
-
puts "warning:
|
45
|
+
puts "warning: gem_file_conflict_checker: conflicts detected! (they may be expected) your rubygems have one or more gems with conflicting lib/* filenames..."
|
46
46
|
for filename, gems in collisions
|
47
47
|
print " \"#{filename}\" was found redundantly in the libs of these gems: "
|
48
48
|
puts gems.map{|gem_name, file_name| "#{gem_name} (#{file_name})"}.join(', ')
|