mkristian/jar-dependencies

View on GitHub
example/lib/example/bc_info.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# loads all dependent jars and exmaple.jar
require 'example'

java_import org.bouncycastle.jce.provider.BouncyCastleProvider

module Example
  def self.bc_info
    BouncyCastleProvider.new.info
  end
end