Skip to content

Commit

Permalink
Version 2.0.2
Browse files Browse the repository at this point in the history
Fixed Ward's html entities escaping bug.
  • Loading branch information
samg committed Jun 20, 2011
1 parent b82934c commit 7b10ea2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 24 deletions.
3 changes: 1 addition & 2 deletions Rakefile
Expand Up @@ -23,7 +23,6 @@ begin

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sam Goldstein"]
s.date = %q{2010-06-28}
s.description = %q{Convenient diffing in ruby}
s.email = %q{sgrock@gmail.com}
s.has_rdoc = true
Expand All @@ -34,6 +33,6 @@ begin

end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
puts "Jeweler not available."
end

2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0.1
2.0.2
41 changes: 20 additions & 21 deletions diffy.gemspec
@@ -1,52 +1,51 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{diffy}
s.version = "2.0.1"
s.version = "2.0.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sam Goldstein"]
s.date = %q{2010-12-07}
s.date = %q{2011-06-20}
s.description = %q{Convenient diffing in ruby}
s.email = %q{sgrock@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
"README.md"
]
s.files = [
".gitignore",
"CHANGELOG",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"diffy.gemspec",
"lib/diffy.rb",
"lib/diffy/diff.rb",
"lib/diffy/format.rb",
"lib/diffy/html_formatter.rb",
"spec/diffy_spec.rb"
"CHANGELOG",
"Gemfile",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"diffy.gemspec",
"lib/diffy.rb",
"lib/diffy/diff.rb",
"lib/diffy/format.rb",
"lib/diffy/html_formatter.rb",
"spec/diffy_spec.rb"
]
s.homepage = %q{http://github.com/samg/diffy/tree/master}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.5.3}
s.summary = %q{A convenient way to diff string in ruby}
s.test_files = [
"spec/diffy_spec.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, ["~> 2.0"])
else
s.add_dependency(%q<rspec>, ["~> 2.0"])
end
else
s.add_dependency(%q<rspec>, ["~> 2.0"])
end
end

0 comments on commit 7b10ea2

Please sign in to comment.