Skip to content

Commit

Permalink
Correct symgraph module names (#1293)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfairh committed Nov 29, 2021
1 parent 7728656 commit 7657911
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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

0 comments on commit 7657911

Please sign in to comment.