Skip to content

Commit e196e7d

Browse files
committed
Fixed a minor circular dependency warning and released 1.0.2.
Note that 1.0.1 was never released to rubygems.org.
1 parent 85f3455 commit e196e7d

File tree

7 files changed

+12
-18
lines changed

7 files changed

+12
-18
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rubytree (1.0.1)
4+
rubytree (1.0.2)
55
json (~> 2.6.1)
66
structured_warnings (~> 0.4.0)
77

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Rakefile - This file is part of the RubyTree package.
44
#
5-
# Copyright (c) 2006-2015 Anupam Sengupta
5+
# Copyright (c) 2006-2021 Anupam Sengupta
66
#
77
# All rights reserved.
88
#
@@ -66,7 +66,7 @@ end
6666

6767
namespace :doc do # ................................ Documentation
6868
begin
69-
gem 'rdoc', '>= 2.4.2' # To get around a stupid bug in Ruby 1.9.2 Rake.
69+
gem 'rdoc', '>= 6.4.0' # To get around a stupid bug in Ruby 1.9.2 Rake.
7070
require 'rdoc/task'
7171
Rake::RDocTask.new do |rdoc|
7272
rdoc.rdoc_dir = 'rdoc'

lib/tree/utils/camel_case_method_handler.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# Author:: Anupam Sengupta (anupamsg@gmail.com)
66
#
7-
# Time-stamp: <2017-12-21 13:42:15 anupam>
7+
# Time-stamp: <2021-12-29 13:02:04 anupam>
88
#
9-
# Copyright (C) 2012, 2013, 2015, 2017 Anupam Sengupta <anupamsg@gmail.com>
9+
# Copyright (C) 2012, 2013, 2015, 2017, 2021 Anupam Sengupta <anupamsg@gmail.com>
1010
#
1111
# All rights reserved.
1212
#
@@ -36,7 +36,6 @@
3636
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3737
#
3838

39-
require_relative '../../../lib/tree'
4039
require 'structured_warnings'
4140

4241
module Tree::Utils

lib/tree/utils/metrics_methods.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# Author:: Anupam Sengupta (anupamsg@gmail.com)
66
#
7-
# Time-stamp: <2017-12-21 12:49:25 anupam>
7+
# Time-stamp: <2021-12-29 13:01:54 anupam>
88
#
9-
# Copyright (C) 2013, 2015, 2017 Anupam Sengupta <anupamsg@gmail.com>
9+
# Copyright (C) 2013, 2015, 2017, 2021 Anupam Sengupta <anupamsg@gmail.com>
1010
#
1111
# All rights reserved.
1212
#
@@ -36,7 +36,6 @@
3636
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3737
#
3838

39-
require_relative '../../../lib/tree'
4039
require 'structured_warnings'
4140

4241
module Tree::Utils

lib/tree/utils/path_methods.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# Author:: Marco Ziccardi and Anupam Sengupta (anupamsg@gmail.com)
66
#
7-
# Time-stamp: <2015-05-30 16:04:00 anupam>
7+
# Time-stamp: <2021-12-29 13:01:58 anupam>
88
#
9-
# Copyright (C) 2015 Anupam Sengupta <anupamsg@gmail.com>
9+
# Copyright (C) 2015, 2021 Anupam Sengupta <anupamsg@gmail.com>
1010
#
1111
# All rights reserved.
1212
#
@@ -36,8 +36,6 @@
3636
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3737
#
3838

39-
require_relative '../../../lib/tree'
40-
4139
module Tree::Utils
4240
# Provides utility methods for path extraction
4341
module TreePathHandler

lib/tree/utils/utils.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#
55
# Author:: Anupam Sengupta (anupamsg@gmail.com)
66
#
7-
# Time-stamp: <2015-05-30 14:25:57 anupam>
7+
# Time-stamp: <2021-12-29 13:02:08 anupam>
88
#
9-
# Copyright (C) 2012, 2015 Anupam Sengupta <anupamsg@gmail.com>
9+
# Copyright (C) 2012, 2015, 2021 Anupam Sengupta <anupamsg@gmail.com>
1010
#
1111
# All rights reserved.
1212
#
@@ -37,8 +37,6 @@
3737

3838
# Provides utilities and mixin modules for RubyTree.
3939

40-
require_relative '../../../lib/tree'
41-
4240
module Tree::Utils
4341
# Empty module. Being used as a namespace.
4442
end

lib/tree/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636

3737
module Tree
3838
# Rubytree Package Version
39-
VERSION = '1.0.1'.freeze
39+
VERSION = '1.0.2'.freeze
4040
end

0 commit comments

Comments
 (0)