Skip to content

Commit

Permalink
Version 2.0.8
Browse files Browse the repository at this point in the history
Handle non-UTF-8 byte sequences in Ruby 1.9.
Avoid non-deterministic deletion of temp files when GC runs
  • Loading branch information
Sam Goldstein committed Jul 6, 2012
1 parent 7f0999d commit bbb0080
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== 2.0.8 ==
Handle non-UTF-8 byte sequences in Ruby 1.9.
Avoid non-deterministic deletion of temp files when GC runs

== 2.0.7 ==
Added :allow_empty_diff option

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.7
2.0.8
4 changes: 2 additions & 2 deletions diffy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = "diffy"
s.version = "2.0.7"
s.version = "2.0.8"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sam Goldstein"]
s.date = "2012-05-31"
s.date = "2012-07-06"
s.description = "Convenient diffing in ruby"
s.email = "[email protected]"
s.extra_rdoc_files = [
Expand Down
37 changes: 37 additions & 0 deletions tags
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /[email protected]/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
Diff lib/diffy/diff.rb /^ class Diff$/;" c class:Diffy
Diffy lib/diffy.rb /^module Diffy; end$/;" m
Diffy lib/diffy/css.rb /^module Diffy$/;" m
Diffy lib/diffy/diff.rb /^module Diffy$/;" m
Diffy lib/diffy/format.rb /^module Diffy$/;" m
Diffy lib/diffy/html_formatter.rb /^module Diffy$/;" m
Format lib/diffy/format.rb /^ module Format$/;" m class:Diffy
HtmlFormatter lib/diffy/html_formatter.rb /^ class HtmlFormatter$/;" c class:Diffy
clean_line lib/diffy/html_formatter.rb /^ def clean_line(line)$/;" f class:Diffy.HtmlFormatter
color lib/diffy/format.rb /^ def color$/;" f class:Diffy.Format
default_format lib/diffy/diff.rb /^ def default_format$/;" f class:Diffy.Diff
default_options lib/diffy/diff.rb /^ def default_options$/;" f class:Diffy.Diff
diff lib/diffy/diff.rb /^ def diff$/;" f class:Diffy
diff_bin lib/diffy/diff.rb /^ def diff_bin$/;" f
each lib/diffy/diff.rb /^ def each$/;" f
each_chunk lib/diffy/diff.rb /^ def each_chunk$/;" f
highlight lib/diffy/html_formatter.rb /^ def highlight(lines)$/;" f class:Diffy.HtmlFormatter.clean_line.split_characters
highlighted_words lib/diffy/html_formatter.rb /^ def highlighted_words$/;" f class:Diffy.HtmlFormatter.clean_line
html lib/diffy/format.rb /^ def html$/;" f class:Diffy.Format.color
html_simple lib/diffy/format.rb /^ def html_simple$/;" f class:Diffy.Format.color
initialize lib/diffy/diff.rb /^ def initialize(string1, string2, options = {})$/;" f class:Diffy
initialize lib/diffy/html_formatter.rb /^ def initialize(diff, options = {})$/;" f class:Diffy.HtmlFormatter
reconstruct_characters lib/diffy/html_formatter.rb /^ def reconstruct_characters(line_diff, type)$/;" f class:Diffy.HtmlFormatter.clean_line.split_characters
split_characters lib/diffy/html_formatter.rb /^ def split_characters(chunk)$/;" f class:Diffy.HtmlFormatter.clean_line
tempfile lib/diffy/diff.rb /^ def tempfile(string)$/;" f
tempfile spec/diffy_spec.rb /^ def tempfile(string)$/;" f
text lib/diffy/format.rb /^ def text$/;" f class:Diffy.Format.color
to_s lib/diffy/diff.rb /^ def to_s(format = nil)$/;" f
to_s lib/diffy/html_formatter.rb /^ def to_s$/;" f class:Diffy.HtmlFormatter
wrap_line lib/diffy/html_formatter.rb /^ def wrap_line(line)$/;" f class:Diffy.HtmlFormatter
wrap_lines lib/diffy/html_formatter.rb /^ def wrap_lines(lines)$/;" f class:Diffy.HtmlFormatter.clean_line

0 comments on commit bbb0080

Please sign in to comment.