mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
- `intellij.ruby.rbs` renamed to `intellij.ruby.rbs.common` - introduced `intellij.ruby.frontend` module - introduced `intellij.ruby.common` module - removed `package` attribute from the tech plugins, they are now in separate jars - added tech-modules xml dependencies on the backend to ensure loading order - no modules are embedded into the plugin jar - scope updated using wildcards for module names GitOrigin-RevId: bc0f38fcc096ceaf26e82de6e657eff612b91f76
15 lines
711 B
XML
15 lines
711 B
XML
<idea-plugin package="ru.adelf.idea.dotenv.ruby">
|
|
<dependencies>
|
|
<plugin id="com.intellij.modules.ruby"/>
|
|
<plugin id="ru.adelf.idea.dotenv"/>
|
|
<module name="intellij.ruby.backend"/>
|
|
</dependencies>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<completion.contributor language="ruby" implementationClass="ru.adelf.idea.dotenv.ruby.RubyEnvCompletionProvider"/>
|
|
<gotoDeclarationHandler implementation="ru.adelf.idea.dotenv.ruby.RubyEnvCompletionProvider"/>
|
|
</extensions>
|
|
|
|
<extensions defaultExtensionNs="ru.adelf.idea.dotenv">
|
|
<environmentVariablesUsagesProvider implementation="ru.adelf.idea.dotenv.ruby.RubyEnvironmentVariablesUsagesProvider"/>
|
|
</extensions>
|
|
</idea-plugin> |