html-diff 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. data/lib/html_diff.rb +1 -4
  2. metadata +1 -1
data/lib/html_diff.rb CHANGED
@@ -8,7 +8,7 @@ class HtmlDiff
8
8
 
9
9
  def stats_line
10
10
  stats=`git diff --stat #{@argv.join(" ")}`
11
- if stats.blank?
11
+ if stats == ""
12
12
  return "no changes"
13
13
  end
14
14
  stats.scan(/\d+ files? changed, \d+ insertions?\(\+\), \d+ deletions?\(\-\)/).last
@@ -21,9 +21,6 @@ class HtmlDiff
21
21
 
22
22
  def html_diff
23
23
  diff=`git diff #{@argv.join(" ")}`
24
- if diff.blank?
25
- return
26
- end
27
24
  diff.gsub!(/^diff \-\-git a\/([^\s]*).*\n.*$/) { "<div class='diff-file'>"+$1+"</div>" }
28
25
  diff.gsub!(/^(\-\-\-\s)(a.*)$/) { "<div class='code'><span class='delete'>"+$1+"&nbsp;"+$2+"</span>" }
29
26
  diff.gsub!(/(\n\<div class\=\'diff-file\'\>)/) { "</div>"+$1}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-diff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: