Skip to content

Commit ed7c619

Browse files
committed
Refresh README links
Use HTTPS links throughout, remove deprecated git:// clone example, and point HEAD docs to rdoc.info. This keeps references current and consistent.
1 parent 3e90364 commit ed7c619

1 file changed

Lines changed: 24 additions & 33 deletions

File tree

README.md

Lines changed: 24 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# **RubyTree** #
22

3-
[![Gem Version](https://badge.fury.io/rb/rubytree.png)](http://badge.fury.io/rb/rubytree)
4-
![Build State](https://github.com/evolve75/rubytree/actions/workflows/ruby.yml/badge.svg)
5-
[![Code Climate](https://codeclimate.com/github/evolve75/RubyTree.png)](https://codeclimate.com/github/evolve75/RubyTree)
3+
[![Gem Version](https://badge.fury.io/rb/rubytree.png)](https://badge.fury.io/rb/rubytree)
4+
![Build State](https://github.com/evolve75/RubyTree/actions/workflows/ruby.yml/badge.svg)
65
[![Coverage Status](https://coveralls.io/repos/evolve75/RubyTree/badge.png)](https://coveralls.io/r/evolve75/RubyTree)
76

87
__ _ _
@@ -157,10 +156,6 @@ Documentation for the latest released version is available at:
157156

158157
[rubytree.anupamsg.me/rdoc][rt_doc]
159158

160-
Documentation for the latest git HEAD is available at:
161-
162-
[rdoc.info/projects/evolve75/RubyTree][rt_doc@head]
163-
164159
Note that the documentation is formatted using [Yard][].
165160

166161
## DEVELOPERS: ##
@@ -181,10 +176,6 @@ The git repository is available at [github.com/evolve75/RubyTree][rt@github].
181176

182177
For cloning the git repository, use one of the following commands:
183178

184-
$ git clone git://github.com/evolve75/RubyTree.git # using ssh
185-
186-
or
187-
188179
$ git clone https://github.com/evolve75/RubyTree.git # using https
189180

190181
### Setting up the Development Environment ###
@@ -218,7 +209,7 @@ A big thanks to the following contributors for helping improve **RubyTree**:
218209
duplicate node names in the tree (globally unique names).
219210
6. [Paul de Courcel](https://github.com/pdecourcel) for adding the
220211
`postordered_each` method.
221-
7. [Jen Hamon](http://www.github.com/jhamon) for adding the `from_hash` method.
212+
7. [Jen Hamon](https://github.com/jhamon) for adding the `from_hash` method.
222213
8. [Evan Sharp](https://github.com/packetmonkey) for adding the `rename` and
223214
`rename_child` methods.
224215
9. [Aidan Steele](https://github.com/aidansteele) for performance improvements
@@ -241,29 +232,29 @@ A big thanks to the following contributors for helping improve **RubyTree**:
241232
[LICENSE.md](./LICENSE.md) for details.
242233

243234

244-
[BSD]: http://opensource.org/licenses/bsd-license.php "BSD License"
245-
[Binary tree]: http://en.wikipedia.org/wiki/Binary_tree "Binary Tree Data Structure"
246-
[Bundler]: http://bundler.io "Bundler"
247-
[Comparable]: http://ruby-doc.org/core/Comparable.html "Comparable mix-in"
248-
[Enumerable]: http://ruby-doc.org/core/Enumerable.html "Enumerable mix-in"
235+
[BSD]: https://opensource.org/licenses/bsd-license.php "BSD License"
236+
[Binary tree]: https://en.wikipedia.org/wiki/Binary_tree "Binary Tree Data Structure"
237+
[Bundler]: https://bundler.io "Bundler"
238+
[Comparable]: https://ruby-doc.org/core/Comparable.html "Comparable mix-in"
239+
[Enumerable]: https://ruby-doc.org/core/Enumerable.html "Enumerable mix-in"
249240
[JSON]: https://rubygems.org/gems/json "JSON"
250241
[Rake]: https://rubygems.org/gems/rake "Rake"
251-
[Ruby]: http://www.ruby-lang.org "Ruby Programming Language"
252-
[SCM]: http://en.wikipedia.org/wiki/Source_Code_Management "Source Code Management"
253-
[Yard]: http://yardoc.org "Yard Document Generator"
254-
[breadth-first]: http://en.wikipedia.org/wiki/Breadth-first_search "Breadth-first (level-first) Traversal"
255-
[git]: http://git-scm.com "Git SCM"
256-
[in-order]: http://en.wikipedia.org/wiki/Tree_traversal#In-order "In-order (symmetric) Traversal"
257-
[marshaling]: http://ruby-doc.org/core/Marshal.html "Marshaling in Ruby"
258-
[post-order]: http://en.wikipedia.org/wiki/Tree_traversal#Post-order "Post-ordered Traversal"
259-
[pre-order]: http://en.wikipedia.org/wiki/Tree_traversal#Pre-order "Pre-ordered Traversal"
260-
[rt@github]: http://github.com/evolve75/RubyTree "RubyTree Project Page on Github"
261-
[rt_doc@head]: http://rdoc.info/projects/evolve75/RubyTree "RubyTree Documentation for VCS Head"
262-
[rt_doc]: http://rubytree.anupamsg.me/rdoc "RubyTree Documentation"
263-
[rt_gem]: http://rubygems.org/gems/rubytree "RubyTree Gem"
264-
[rt_site]: http://rubytree.anupamsg.me "RubyTree Site"
265-
[tree_data_structure]: http://en.wikipedia.org/wiki/Tree_data_structure "Tree Data Structure"
266-
[RSpec]: https://relishapp.com/rspec/
242+
[Ruby]: https://www.ruby-lang.org "Ruby Programming Language"
243+
[SCM]: https://en.wikipedia.org/wiki/Source_Code_Management "Source Code Management"
244+
[Yard]: https://yardoc.org "Yard Document Generator"
245+
[breadth-first]: https://en.wikipedia.org/wiki/Breadth-first_search "Breadth-first (level-first) Traversal"
246+
[git]: https://git-scm.com "Git SCM"
247+
[in-order]: https://en.wikipedia.org/wiki/Tree_traversal#In-order "In-order (symmetric) Traversal"
248+
[marshaling]: https://ruby-doc.org/core/Marshal.html "Marshaling in Ruby"
249+
[post-order]: https://en.wikipedia.org/wiki/Tree_traversal#Post-order "Post-ordered Traversal"
250+
[pre-order]: https://en.wikipedia.org/wiki/Tree_traversal#Pre-order "Pre-ordered Traversal"
251+
[rt@github]: https://github.com/evolve75/RubyTree "RubyTree Project Page on Github"
252+
[rt_doc@head]: https://rdoc.info/projects/evolve75/RubyTree "RubyTree Documentation for VCS Head"
253+
[rt_doc]: https://rubytree.anupamsg.me/rdoc "RubyTree Documentation"
254+
[rt_gem]: https://rubygems.org/gems/rubytree "RubyTree Gem"
255+
[rt_site]: https://rubytree.anupamsg.me "RubyTree Site"
256+
[tree_data_structure]: https://en.wikipedia.org/wiki/Tree_data_structure "Tree Data Structure"
257+
[RSpec]: https://rspec.info/
267258
[Rubocop]: https://rubocop.org/
268259

269260
[TreeNode]: rdoc-ref:Tree::TreeNode

0 commit comments

Comments
 (0)