-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
48 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,46 +3,33 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = "diff-lcs".freeze | ||
s.version = "1.5.0" | ||
s.version = "1.5.0".freeze | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= | ||
s.metadata = { "bug_tracker_uri" => "https://github.com/halostatue/diff-lcs/issues", "homepage_uri" => "https://github.com/halostatue/diff-lcs", "source_code_uri" => "https://github.com/halostatue/diff-lcs" } if s.respond_to? :metadata= | ||
s.metadata = { "bug_tracker_uri" => "https://github.com/halostatue/diff-lcs/issues", "homepage_uri" => "https://github.com/halostatue/diff-lcs", "rubygems_mfa_required" => "true", "source_code_uri" => "https://github.com/halostatue/diff-lcs" } if s.respond_to? :metadata= | ||
s.require_paths = ["lib".freeze] | ||
s.authors = ["Austin Ziegler".freeze] | ||
s.date = "2021-12-23" | ||
s.date = "2024-01-31" | ||
s.description = "Diff::LCS computes the difference between two Enumerable sequences using the\nMcIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities\nto create a simple HTML diff output format and a standard diff-like tool.\n\nThis is release 1.4.3, providing a simple extension that allows for\nDiff::LCS::Change objects to be treated implicitly as arrays and fixes a\nnumber of formatting issues.\n\nRuby versions below 2.5 are soft-deprecated, which means that older versions\nare no longer part of the CI test suite. If any changes have been introduced\nthat break those versions, bug reports and patches will be accepted, but it\nwill be up to the reporter to verify any fixes prior to release. The next\nmajor release will completely break compatibility.".freeze | ||
s.email = ["[email protected]".freeze] | ||
s.executables = ["htmldiff".freeze, "ldiff".freeze] | ||
s.extra_rdoc_files = ["Code-of-Conduct.md".freeze, "Contributing.md".freeze, "History.md".freeze, "License.md".freeze, "Manifest.txt".freeze, "README.rdoc".freeze, "docs/COPYING.txt".freeze, "docs/artistic.txt".freeze] | ||
s.files = [".rspec".freeze, "Code-of-Conduct.md".freeze, "Contributing.md".freeze, "History.md".freeze, "License.md".freeze, "Manifest.txt".freeze, "README.rdoc".freeze, "Rakefile".freeze, "bin/htmldiff".freeze, "bin/ldiff".freeze, "docs/COPYING.txt".freeze, "docs/artistic.txt".freeze, "lib/diff-lcs.rb".freeze, "lib/diff/lcs.rb".freeze, "lib/diff/lcs/array.rb".freeze, "lib/diff/lcs/backports.rb".freeze, "lib/diff/lcs/block.rb".freeze, "lib/diff/lcs/callbacks.rb".freeze, "lib/diff/lcs/change.rb".freeze, "lib/diff/lcs/htmldiff.rb".freeze, "lib/diff/lcs/hunk.rb".freeze, "lib/diff/lcs/internals.rb".freeze, "lib/diff/lcs/ldiff.rb".freeze, "lib/diff/lcs/string.rb".freeze, "spec/change_spec.rb".freeze, "spec/diff_spec.rb".freeze, "spec/fixtures/aX".freeze, "spec/fixtures/bXaX".freeze, "spec/fixtures/ds1.csv".freeze, "spec/fixtures/ds2.csv".freeze, "spec/fixtures/ldiff/output.diff".freeze, "spec/fixtures/ldiff/output.diff-c".freeze, "spec/fixtures/ldiff/output.diff-e".freeze, "spec/fixtures/ldiff/output.diff-f".freeze, "spec/fixtures/ldiff/output.diff-u".freeze, "spec/fixtures/ldiff/output.diff.chef".freeze, "spec/fixtures/ldiff/output.diff.chef-c".freeze, "spec/fixtures/ldiff/output.diff.chef-e".freeze, "spec/fixtures/ldiff/output.diff.chef-f".freeze, "spec/fixtures/ldiff/output.diff.chef-u".freeze, "spec/fixtures/ldiff/output.diff.chef2".freeze, "spec/fixtures/ldiff/output.diff.chef2-c".freeze, "spec/fixtures/ldiff/output.diff.chef2-d".freeze, "spec/fixtures/ldiff/output.diff.chef2-e".freeze, "spec/fixtures/ldiff/output.diff.chef2-f".freeze, "spec/fixtures/ldiff/output.diff.chef2-u".freeze, "spec/fixtures/new-chef".freeze, "spec/fixtures/new-chef2".freeze, "spec/fixtures/old-chef".freeze, "spec/fixtures/old-chef2".freeze, "spec/hunk_spec.rb".freeze, "spec/issues_spec.rb".freeze, "spec/lcs_spec.rb".freeze, "spec/ldiff_spec.rb".freeze, "spec/patch_spec.rb".freeze, "spec/sdiff_spec.rb".freeze, "spec/spec_helper.rb".freeze, "spec/traverse_balanced_spec.rb".freeze, "spec/traverse_sequences_spec.rb".freeze] | ||
s.homepage = "https://github.com/halostatue/diff-lcs".freeze | ||
s.licenses = ["MIT".freeze, "Artistic-2.0".freeze, "GPL-2.0+".freeze] | ||
s.licenses = ["MIT".freeze, "Artistic-2.0".freeze, "GPL-2.0-or-later".freeze] | ||
s.rdoc_options = ["--main".freeze, "README.rdoc".freeze] | ||
s.required_ruby_version = Gem::Requirement.new(">= 1.8".freeze) | ||
s.rubygems_version = "3.1.6".freeze | ||
s.rubygems_version = "3.5.3".freeze | ||
s.summary = "Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm".freeze | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 4 | ||
end | ||
s.specification_version = 4 | ||
|
||
if s.respond_to? :add_runtime_dependency then | ||
s.add_development_dependency(%q<hoe-doofus>.freeze, ["~> 1.0"]) | ||
s.add_development_dependency(%q<hoe-gemspec2>.freeze, ["~> 1.1"]) | ||
s.add_development_dependency(%q<hoe-git>.freeze, ["~> 1.6"]) | ||
s.add_development_dependency(%q<hoe-rubygems>.freeze, ["~> 1.0"]) | ||
s.add_development_dependency(%q<rspec>.freeze, [">= 2.0", "< 4"]) | ||
s.add_development_dependency(%q<rake>.freeze, [">= 10.0", "< 14"]) | ||
s.add_development_dependency(%q<rdoc>.freeze, [">= 6.3.1", "< 7"]) | ||
s.add_development_dependency(%q<hoe>.freeze, ["~> 3.23"]) | ||
else | ||
s.add_dependency(%q<hoe-doofus>.freeze, ["~> 1.0"]) | ||
s.add_dependency(%q<hoe-gemspec2>.freeze, ["~> 1.1"]) | ||
s.add_dependency(%q<hoe-git>.freeze, ["~> 1.6"]) | ||
s.add_dependency(%q<hoe-rubygems>.freeze, ["~> 1.0"]) | ||
s.add_dependency(%q<rspec>.freeze, [">= 2.0", "< 4"]) | ||
s.add_dependency(%q<rake>.freeze, [">= 10.0", "< 14"]) | ||
s.add_dependency(%q<rdoc>.freeze, [">= 6.3.1", "< 7"]) | ||
s.add_dependency(%q<hoe>.freeze, ["~> 3.23"]) | ||
end | ||
s.add_development_dependency(%q<hoe>.freeze, [">= 4.0".freeze, "< 5".freeze]) | ||
s.add_development_dependency(%q<hoe-doofus>.freeze, ["~> 1.0".freeze]) | ||
s.add_development_dependency(%q<hoe-gemspec2>.freeze, ["~> 1.1".freeze]) | ||
s.add_development_dependency(%q<hoe-git2>.freeze, ["~> 1.7".freeze]) | ||
s.add_development_dependency(%q<hoe-rubygems>.freeze, ["~> 1.0".freeze]) | ||
s.add_development_dependency(%q<rspec>.freeze, [">= 2.0".freeze, "< 4".freeze]) | ||
s.add_development_dependency(%q<rake>.freeze, [">= 10.0".freeze, "< 14".freeze]) | ||
s.add_development_dependency(%q<rdoc>.freeze, [">= 6.3.1".freeze, "< 7".freeze]) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters