-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from evolve75/rexml_update
Updated the library versions and bumped version to 2.1.0. No longer supporting Ruby Version 2.6
- Loading branch information
Showing
9 changed files
with
77 additions
and
59 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
# Author:: Anupam Sengupta ([email protected]) | ||
# | ||
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved. | ||
# Copyright (c) 2012-2024 Anupam Sengupta. All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
|
@@ -35,5 +35,5 @@ | |
|
||
module Tree | ||
# Rubytree Package Version | ||
VERSION = '2.0.3' | ||
VERSION = '2.1.0' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# Author:: Anupam Sengupta ([email protected]) | ||
# | ||
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved. | ||
# Copyright (c) 2012-2024 Anupam Sengupta. All rights reserved. | ||
# | ||
# frozen_string_literal: true | ||
|
||
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s| | |
s.email = '[email protected]' | ||
s.homepage = 'http://rubytree.anupamsg.me' | ||
|
||
s.required_ruby_version = '>=2.6' | ||
s.required_ruby_version = '>=2.7' | ||
|
||
s.summary = 'A generic tree data structure for Ruby.' | ||
|
||
|
@@ -67,16 +67,16 @@ Gem::Specification.new do |s| | |
|
||
# NOTE: Rake is added as a development and test dependency in the Gemfile. | ||
s.add_development_dependency 'bundler', '~> 2.3' | ||
s.add_development_dependency 'rake', '~> 13.0' | ||
s.add_development_dependency 'rdoc', '~> 6.0' | ||
s.add_development_dependency 'rake', '~> 13.2' | ||
s.add_development_dependency 'rdoc', '~> 6.7' | ||
s.add_development_dependency 'rspec', '~> 3.0', '> 3.10' | ||
s.add_development_dependency 'rtagstask', '~> 0.0.4' | ||
s.add_development_dependency 'rubocop', '~> 1.0' | ||
s.add_development_dependency 'rubocop-rake', '~> 0.0' | ||
s.add_development_dependency 'rubocop-rspec', '~> 2.0' | ||
s.add_development_dependency 'simplecov', '~> 0.21' | ||
s.add_development_dependency 'rubocop', '~> 1.65' | ||
s.add_development_dependency 'rubocop-rake', '~> 0.6' | ||
s.add_development_dependency 'rubocop-rspec', '~> 3.0' | ||
s.add_development_dependency 'simplecov', '~> 0.22' | ||
s.add_development_dependency 'simplecov-lcov', '~> 0.8' | ||
s.add_development_dependency 'test-unit', '~> 3.0' | ||
s.add_development_dependency 'test-unit', '~> 3.6' | ||
s.add_development_dependency 'yard', '~> 0.0', '>= 0.9.36' | ||
|
||
s.post_install_message = <<-END_MESSAGE | ||
|