Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I checked ruby/openssl and discovered some minor issues.
openssl.gemspec
only specified "Ruby" as the license in the metadata. This repository, and also built.gem
from the gemspec always contained the license text for both the Ruby License (LICENSE.txt
) and the 2-clause BSD License (BSDL
). The Ruby License text also explicitly states that the program is dual-licensed with the 2-clause BSD License. In this case, I believe it's safe to simply correct the gemspec.Copyright notices in some source files contain the sentence "[t]his program is licensed under the same licence as Ruby" and a reference to a non-existent file
LICENCE
. The fileLICENCE
is supposed to contain the text of the Ruby License, according tohttp://cvs.savannah.gnu.org/viewvc/rubypki/ossl2/LICENCE?revision=1.1.1.1&view=markup
The content is identical to
COPYING
in the ruby's tree at the time it was mergedhttps://github.com/ruby/ruby/blob/231247c010acba191b78ed2d1310c935e63ad919/COPYING
I will update the references with the new file name.