gem_file_conflict_checker 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +1 -1
  2. data/VERSION +1 -1
  3. data/lib/conflict_checker.rb +1 -1
  4. metadata +1 -1
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- = gem_conflict_plugin
1
+ = gem_file_conflict_checker
2
2
 
3
3
  This is a rubygems plugin that warns warn you when you accidentally install gems that have filenames that collide and hence are unstable.
4
4
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -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: gem_conflict_plugin: conflicts detected! (they may be expected) your rubygems have one or more gems with conflicting lib/* filenames..."
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(', ')
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.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - rdp