Files
openide/plugins/env-files-support/ruby/resources/intellij.dotenv.ruby.xml
Alexandr Evstigneev ab84f20f89 RUBY-34039 re-working modules structure
- `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
2025-06-14 16:43:21 +00:00

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>