rooted_tree 0.3.4 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4500aef4d9f3aaa7483ec8908d63c594d2b1f8c9
4
- data.tar.gz: c45b17013a6aa680e023a86e8b927841d22259b8
3
+ metadata.gz: 4aef9f7cc1226b901e43b8ee8cb5ab7c57c5d4f0
4
+ data.tar.gz: ea1b55e42eec0c35c74d3ee20462f4c4eb04c299
5
5
  SHA512:
6
- metadata.gz: 88bbe928aa3515c11a0c11d150c17286ca38e4bf4e69331eb1c4e4847743262978fd59ce4e1d126f898ab252fe6214ee7b21cf93be94666e6aa563f53ad5c03f
7
- data.tar.gz: 568e6025fb468c1f7477a6425c140e506564ba4b84500f92fce9dd8fb174f77cdaae98f5d725b5f12a07ccaee359392a01bb0f339a9db6fb5fb725c6c175604d
6
+ metadata.gz: 90981a1ddb2be50bb58664489819f99792d6e2ccdb2b252ed61f62528e9acede0aebfd3c381a57bab170a0fb8db39823bbc6d2769633f77876a616f1c59a6994
7
+ data.tar.gz: 0f6710da6992ad7dc40a9bd569d27b712bb2fb57f6a8205a0a07b766db1bc1ad053d14674b40ab86d57dc804fd5ccbf9e7bdb9952577f777ed92234b25013378
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rooted_tree (0.3.4)
4
+ rooted_tree (0.3.5)
5
5
  linked (~> 0.1.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
  [![Inline docs](http://inch-ci.org/github/seblindberg/ruby-rooted_tree.svg?branch=master)](http://inch-ci.org/github/seblindberg/ruby-rooted_tree)
6
6
  [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/rooted_tree/)
7
7
 
8
+ Moved to ---> "[rooted](https://github.com/seblindberg/ruby-rooted)".
9
+
8
10
  This gem implements a _rooted, ordered tree_, but that name is a bit of a mouthful. It is ment to be used as a building block when working with any tree shaped data. For a brief recap of the terminology please see below. Please refer to https://en.wikipedia.org/wiki/Tree_structure for a more in depth description.
9
11
 
10
12
  A A is the root.
@@ -82,7 +84,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
82
84
 
83
85
  ## Contributing
84
86
 
85
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rooted_tree.
87
+ Bug reports and pull requests are welcome on GitHub at https://github.com/seblindberg/ruby-rooted_tree.
86
88
 
87
89
 
88
90
  ## License
@@ -2,5 +2,5 @@
2
2
 
3
3
  module RootedTree
4
4
  # @return [String] the semantic version number of the library.
5
- VERSION = '0.3.4'
5
+ VERSION = '0.3.5'
6
6
  end
@@ -13,10 +13,18 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = 'A basic implementation of a tree data structure.'
14
14
  spec.description = 'This gem implements a rooted, ordered tree, with a ' \
15
15
  'focus on easy iteration over nodes and access to ' \
16
- 'basic tree properties.'
16
+ 'basic tree properties.' \
17
+ "\n\n" \
18
+ 'Moved to ---> "rooted".'
17
19
  spec.homepage = 'https://github.com/seblindberg/ruby-rooted_tree'
18
20
  spec.license = 'MIT'
19
21
 
22
+ spec.post_install_message = <<-MESSAGE
23
+ ! The 'rooted_tree' gem has been deprecated and replaced by 'rooted'.
24
+ ! See: https://rubygems.org/gems/rooted
25
+ ! And: https://github.com/seblindberg/ruby-rooted
26
+ MESSAGE
27
+
20
28
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
21
29
  `git ls-files -z`.split("\x0")
22
30
  .reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rooted_tree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Lindberg
@@ -122,8 +122,10 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0.9'
125
- description: This gem implements a rooted, ordered tree, with a focus on easy iteration
126
- over nodes and access to basic tree properties.
125
+ description: |-
126
+ This gem implements a rooted, ordered tree, with a focus on easy iteration over nodes and access to basic tree properties.
127
+
128
+ Moved to ---> "rooted".
127
129
  email:
128
130
  - seb.lindberg@gmail.com
129
131
  executables: []
@@ -151,7 +153,10 @@ homepage: https://github.com/seblindberg/ruby-rooted_tree
151
153
  licenses:
152
154
  - MIT
153
155
  metadata: {}
154
- post_install_message:
156
+ post_install_message: |2
157
+ ! The 'rooted_tree' gem has been deprecated and replaced by 'rooted'.
158
+ ! See: https://rubygems.org/gems/rooted
159
+ ! And: https://github.com/seblindberg/ruby-rooted
155
160
  rdoc_options: []
156
161
  require_paths:
157
162
  - lib