~singpolyma/sgx-jmp

ref: 23018db151ab4e6683c38ff1aeb0f588720e4d68 sgx-jmp/lib/blather_ext.rb -rw-r--r-- 188 bytes
23018db1Stephen Paul Weber Switch to rubocop 0.89.1 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Blather
	class JID
		def with(node: self.node, domain: self.domain, resource: self.resource)
			self.class.new(node, domain, resource)
		end
	end
end