lib/sub_diff.rb in sub_diff-0.0.0 vs lib/sub_diff.rb in sub_diff-1.0.0
- old
+ new
@@ -1,39 +1,4 @@
-require 'respond_to_missing'
+require 'sub_diff/core_ext/string'
+require 'sub_diff/version'
-module SubDiff
- autoload :Diff, 'sub_diff/diff'
- autoload :DiffCollection, 'sub_diff/diff_collection'
- autoload :Version, 'sub_diff/version'
-
- def gsub_diff(*args, &block)
- with_diff_collection do |diff_collection|
- match_prefix, suffix_matcher = '', args.first.is_a?(Regexp) ? :match : :include?
- gsub(args.first) do |match|
- suffix, prefix, replacement = Diff.new($'), Diff.new($`.sub(match_prefix, '')), Diff.new(match.sub(*args, &block), match)
- diff_collection << prefix << replacement
- diff_collection << suffix unless suffix.send(suffix_matcher, args.first)
- match_prefix << prefix + match
- end
- end
- end
-
- def sub_diff(*args, &block)
- with_diff_collection do |diff_collection|
- sub(args.first) do |match|
- suffix, prefix, replacement = Diff.new($'), Diff.new($`), Diff.new(match.sub(*args, &block), match)
- diff_collection << prefix << replacement << suffix
- end
- end
- end
-
- protected
-
- def with_diff_collection
- diff_collection = DiffCollection.new
- yield diff_collection
- diff_collection << Diff.new(self) if diff_collection.empty?
- diff_collection
- end
-end
-
-String.send(:include, SubDiff)
\ No newline at end of file
+String.send(:include, SubDiff::CoreExt::String)