lib/jazzy/docset_builder.rb in jazzy-0.6.3 vs lib/jazzy/docset_builder.rb in jazzy-0.7.0
- old
+ new
@@ -39,12 +39,11 @@
info_plist_path = docset_dir + 'Contents/Info.plist'
info_plist_path.open('w') do |plist|
template = Pathname(__dir__) + 'docset_builder/info_plist.mustache'
plist << Mustache.render(
template.read,
- bundle_identifier: source_module.name.downcase,
+ lowercase_name: source_module.name.downcase,
name: source_module.name,
- platform_family: config.docset_platform,
)
end
end
def create_archive