Sha256: f40c619fb510be7e7ca25c0cd82a685c63cd3e1965e28cea8fbe4f06155ed19a

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

# lib = File.expand_path("lib", __dir__)
# $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# require "nimiq/version"
require_relative "lib/ruby/client/version"

Gem::Specification.new do |spec|
  spec.name = "ruby-client"
  spec.version = Ruby::Client::VERSION
  spec.authors = ["jxdv"]
  spec.email = ["name@email.address"]

  spec.summary = %q{Ruby implementation of the Nimiq RPC client specifications.}
  spec.description = %q{Write a longer description or delete this line.}
  spec.homepage = "https://github.com/jxdv/ruby-client"
  spec.license = "Apache-2.0"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/jxdv/ruby-client"
  spec.metadata["changelog_uri"] = "https://github.com/jxdv/ruby-client/readme.md"

  spec.add_dependency "oj", "~> 2.15"

  spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-client-1.1.0 ruby-client.gemspec
ruby-client-1.0.9 ruby-client.gemspec