-
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 #96 from evolve75/95-clarification-of-the-used-bsd…
…-licence Fixed the incorrect license in the `gemspec`. Should be `BSD-2-clause`.
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
rubytree (2.0.0) | ||
rubytree (2.0.1) | ||
json (~> 2.0, > 2.3.1) | ||
|
||
GEM | ||
|
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-2022 Anupam Sengupta. All rights reserved. | ||
# Copyright (c) 2012-2023 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.0' | ||
VERSION = '2.0.1' | ||
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-2022 Anupam Sengupta. All rights reserved. | ||
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved. | ||
# | ||
# frozen_string_literal: true | ||
|
||
|
@@ -12,7 +12,7 @@ require File.join(__dir__, '/lib/tree/version') | |
Gem::Specification.new do |s| | ||
s.name = 'rubytree' | ||
s.version = Tree::VERSION | ||
s.license = 'BSD-3-Clause-Clear' | ||
s.license = 'BSD-2-Clause' | ||
# NOTE: s.date should NOT be assigned. It is automatically set to pkg date. | ||
s.platform = Gem::Platform::RUBY | ||
s.author = 'Anupam Sengupta' | ||
|