Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct symgraph module names #1293

Merged
merged 1 commit into from Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -13,7 +13,10 @@

##### Bug Fixes

* None.
* In Swift symbolgraph mode, stop including extensions to types that are beneath
the minimum ACL.
[John Fairhurst](https://github.com/johnfairh)
[#1291](https://github.com/realm/jazzy/issues/1291)

## 0.14.1

Expand Down
2 changes: 1 addition & 1 deletion lib/jazzy/symbol_graph.rb
Expand Up @@ -28,7 +28,7 @@ def self.build(config)
Dir[tmp_dir + '/*.symbols.json'].map do |filename|
# The @ part is for extensions in our module (before the @)
# of types in another module (after the @).
filename =~ /(.*?)(@(.*?))?\.symbols/
File.basename(filename) =~ /(.*?)(@(.*?))?\.symbols/
module_name = Regexp.last_match[3] || Regexp.last_match[1]
{
filename =>
Expand Down
2 changes: 1 addition & 1 deletion spec/integration_specs
Submodule integration_specs updated 125 files