Sha256: 7b6cfb9a3a385780f9e1a4281f19e345ae252bf16215fd9718ebea62d7576851

Contents?: true

Size: 762 Bytes

Versions: 310

Compression:

Stored size: 762 Bytes

Contents

# -*- ruby encoding: utf-8 -*-

# A block is an operation removing, adding, or changing a group of items.
# Basically, this is just a list of changes, where each change adds or
# deletes a single item. Used by bin/ldiff.
class Diff::LCS::Block
  attr_reader :changes, :insert, :remove

  def initialize(chunk)
    @changes = []
    @insert = []
    @remove = []

    chunk.each do |item|
      @changes << item
      @remove << item if item.deleting?
      @insert << item if item.adding?
    end
  end

  def diff_size
    @insert.size - @remove.size
  end

  def op
    case [@remove.empty?, @insert.empty?]
    when [false, false]
      '!'
    when [false, true]
      '-'
    when [true, false]
      '+'
    else # [true, true]
      '^'
    end
  end
end

Version data entries

310 entries across 287 versions & 87 rubygems

Version Path
sshp-0.0.2 vendor/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb
sshp-0.0.1 vendor/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb
diff-lcs-1.2.4 lib/diff/lcs/block.rb
diff-lcs-1.2.3 lib/diff/lcs/block.rb
diff-lcs-1.2.2 lib/diff/lcs/block.rb
vagrant-actionio-0.0.9 vendor/bundle/gems/diff-lcs-1.2.1/lib/diff/lcs/block.rb
diff-lcs-1.2.1 lib/diff/lcs/block.rb
diff-lcs-1.2.0 lib/diff/lcs/block.rb