lib/gem-wrappers.rb in gem-wrappers-0.9.0 vs lib/gem-wrappers.rb in gem-wrappers-0.9.1

- old
+ new

@@ -4,11 +4,11 @@ module GemWrappers def self.install(executables) environment = GemWrappers::Environment.new environment.ensure - wrappers = GemWrappers::Installer.new(environment.file) + wrappers = GemWrappers::Installer.new(environment.file_name) wrappers.ensure # gem executables executables.each do |executable| wrappers.install(executable) @@ -23,9 +23,9 @@ def self.wrappers_path GemWrappers::Installer.wrappers_path end def self.environment_file - GemWrappers::Environment.file + GemWrappers::Environment.file_name end end