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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/lib/rooted_tree/version.rb +1 -1
- data/rooted_tree.gemspec +9 -1
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4aef9f7cc1226b901e43b8ee8cb5ab7c57c5d4f0
|
4
|
+
data.tar.gz: ea1b55e42eec0c35c74d3ee20462f4c4eb04c299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90981a1ddb2be50bb58664489819f99792d6e2ccdb2b252ed61f62528e9acede0aebfd3c381a57bab170a0fb8db39823bbc6d2769633f77876a616f1c59a6994
|
7
|
+
data.tar.gz: 0f6710da6992ad7dc40a9bd569d27b712bb2fb57f6a8205a0a07b766db1bc1ad053d14674b40ab86d57dc804fd5ccbf9e7bdb9952577f777ed92234b25013378
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
[](http://inch-ci.org/github/seblindberg/ruby-rooted_tree)
|
6
6
|
[](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/
|
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
|
data/lib/rooted_tree/version.rb
CHANGED
data/rooted_tree.gemspec
CHANGED
@@ -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
|
+
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:
|
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
|