Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ template. Your help and contribution make ScanCode docs better, we love hearing

The ScanCode documentation is hosted at `scancode-toolkit.readthedocs.io <https://scancode-toolkit.readthedocs.io/en/latest/>`_.

If you want to contribute to Scancode Documentation, you'll find `this guide here https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html`_ helpful.
If you want to contribute to Scancode Documentation, you'll find `this guide here <https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html>`_ helpful.

Development
===========
Expand Down Expand Up @@ -123,7 +123,7 @@ To set up ScanCode for local development:

git checkout -b name-of-your-bugfix-or-feature

4. Check out the Contributing to Code Development `documentation <https://scancode-toolkit.readthedocs.io/en/stable/contribute/contrib_dev.html>`_, as it contains more in-depth guide for contributing code and documentation.
4. Check out the Contributing to Code Development `documentation <https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html>`_, as it contains more in-depth guide for contributing code and documentation.

5. To configure your local environment for development, locate to the main
directory of the local repository, and run the configure script.
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jsonstreams==0.6.0
keyring==23.7.0
license-expression==30.4.4
lxml==6.0.2
luaparser==4.0.0
MarkupSafe==3.0.3
more-itertools==10.8.0
multiregex==2.0.3
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ install_requires =
jsonstreams >= 0.5.0
license_expression >= 30.4.4
lxml >= 5.4.0
luaparser == 4.0.0
MarkupSafe >= 2.1.2
multiregex >= 2.0.3
normality <= 2.6.1
Expand Down
3 changes: 3 additions & 0 deletions src/packagedcode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from packagedcode import pubspec
from packagedcode import pypi
from packagedcode import readme
from packagedcode import rockspec
from packagedcode import rpm
from packagedcode import rubygems
from packagedcode import swift
Expand Down Expand Up @@ -202,6 +203,8 @@
rubygems.GemspecInExtractedGemHandler,
rubygems.GemspecHandler,

rockspec.RockspecHandler,

swift.SwiftManifestJsonHandler,
swift.SwiftPackageResolvedHandler,
swift.SwiftShowDependenciesDepLockHandler,
Expand Down
Loading