diff --git a/Rakefile b/Rakefile index f58f6e7..eb02428 100644 --- a/Rakefile +++ b/Rakefile @@ -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 @@ -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 diff --git a/VERSION b/VERSION index 38f77a6..e9307ca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.1 +2.0.2 diff --git a/diffy.gemspec b/diffy.gemspec index c17a41c..3b835ff 100644 --- a/diffy.gemspec +++ b/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, ["~> 2.0"]) else + s.add_dependency(%q, ["~> 2.0"]) end else + s.add_dependency(%q, ["~> 2.0"]) end end