This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /usr/share/rubygems-integration/all/gems/hiera-eyaml-3.2.2/lib/hiera/backend/eyaml/plugins.rb 2022-11-27 18:08:05.525517940 +0000 | |
+++ /usr/share/rubygems-integration/all/gems/hiera-eyaml-3.2.2/lib/hiera/backend/eyaml/plugins.rb 2022-11-27 18:08:26.589682554 +0000 | |
@@ -32,6 +32,7 @@ | |
specs = Gem::VERSION >= "1.6.0" ? source.latest_specs(true) : source.latest_specs | |
specs.each do |spec| | |
+ spec = spec.to_spec if spec.respond_to?(:to_spec) | |
next if @@plugins.include? spec | |
dependency = spec.dependencies.find { |d| d.name == "hiera-eyaml" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
converse.plugins.add('autologin', { | |
initialize: function () { | |
var _converse = this._converse; | |
_converse.api.listen.on('connected', function () { | |
if (_converse.trusted && _converse.bare_jid && _converse.connection.pass) { | |
localStorage.converse_jid = _converse.bare_jid; | |
localStorage.converse_pass = _converse.connection.pass; | |
} |