diff --git a/gxg-framework.gemspec b/gxg-framework.gemspec index bc2d609..d16b965 100644 --- a/gxg-framework.gemspec +++ b/gxg-framework.gemspec @@ -1,14 +1,14 @@ Gem::Specification.new do |s| s.name = 'gxg-framework' - s.version = '0.0.56' - s.licenses = ['UNLICENSED'] + s.version = '0.0.57' + s.licenses = ['HIPPOCRATIC', 'https://firstdonoharm.dev/version/2/1/license.html'] s.summary = "GxG Framework" s.description = "GxG Framework" s.authors = ["G. Gibson"] - s.email = 'mistergibson@disroot.org' + s.email = 'c0decafe@gmx.com' s.files = ['gxg-framework.gemspec'] + ['lib/gxg-framework.rb'] + Dir['lib/gxg/*'] - s.homepage = 'https://cdc.csproject.org/c0de' - s.metadata = { "source_code_uri" => "https://cdc.csproject.org/c0de" } + s.homepage = 'https://github.com/mistergibson/gxg-framework' + s.metadata = { "source_code_uri" => "https://github.com/mistergibson/gxg-framework" } s.require_path = "lib" # ### Requirements: s.add_runtime_dependency 'sys-cpu' @@ -20,10 +20,13 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'ffi' s.add_runtime_dependency 'chronic' s.add_runtime_dependency 'rufus-scheduler', '~> 3.0' - # FIX : big hassle with windows - exclude for now - # s.add_runtime_dependency 'ffi-rzmq' - # s.add_runtime_dependency 'ezmq' - s.add_runtime_dependency 'jrzmq' + if ::RUBY_ENGINE == "jruby" + s.add_runtime_dependency 'jrzmq' + else + # FIX : big hassle with windows - exclude for now + s.add_runtime_dependency 'ffi-rzmq' + s.add_runtime_dependency 'ezmq' + end s.add_runtime_dependency 'nokogiri' s.add_runtime_dependency 'mimemagic' s.add_runtime_dependency 'rubysl-securerandom' @@ -58,11 +61,11 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'jdbc-mssql' s.add_runtime_dependency 'jdbc-nuodb' ### FIX : openedge requires external .jars in classpath -- exclude for now. - s.add_runtime_dependency 'jdbc-openedge' + # s.add_runtime_dependency 'jdbc-openedge' s.add_runtime_dependency 'jdbc-orientdb' s.add_runtime_dependency 'jdbc-phoenix' ### FIX : redshift is missing the RedshiftJDBC4.jar file -- exclude for now. - s.add_runtime_dependency 'jdbc-redshift' + # s.add_runtime_dependency 'jdbc-redshift' s.add_runtime_dependency 'jdbc-splice' s.add_runtime_dependency 'jdbc-vertica' end