Sha256: 8d3a66abbf6d072e96feeba5621154ae139811b4604cca04de74705115bc29f3

Contents?: true

Size: 1.29 KB

Versions: 15

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

require_relative "lib/grumlin/version"

Gem::Specification.new do |spec|
  spec.name          = "grumlin"
  spec.version       = Grumlin::VERSION
  spec.authors       = ["Gleb Sinyavskiy"]
  spec.email         = ["zhulik.gleb@gmail.com"]

  spec.summary       = "Gremlin graph traversal language DSL and client for Ruby."

  spec.description   = <<~DESCRIPTION
    Gremlin graph traversal language DSL and client for Ruby. Suitable and tested with gremlin-server and AWS Neptune.
  DESCRIPTION

  spec.homepage      = "https://github.com/zhulik/grumlin"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/zhulik/grumlin"
  spec.metadata["changelog_uri"] = "https://github.com/zhulik/grumlin/blob/master/CHANGELOG.md"

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.require_paths = ["lib"]

  spec.add_dependency "async-pool", "~> 0.3"
  spec.add_dependency "async-websocket", "~> 0.19"
  spec.add_dependency "oj", "~> 3.12"
  spec.add_dependency "zeitwerk", "~> 2.4"
  spec.metadata = {
    "rubygems_mfa_required" => "true"
  }
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
grumlin-0.18.1 grumlin.gemspec
grumlin-0.18.0 grumlin.gemspec
grumlin-0.17.0 grumlin.gemspec
grumlin-0.16.1 grumlin.gemspec
grumlin-0.16.0 grumlin.gemspec
grumlin-0.15.6 grumlin.gemspec
grumlin-0.15.4 grumlin.gemspec
grumlin-0.15.3 grumlin.gemspec
grumlin-0.15.2 grumlin.gemspec
grumlin-0.15.1 grumlin.gemspec
grumlin-0.15.0 grumlin.gemspec
grumlin-0.14.5 grumlin.gemspec
grumlin-0.14.4 grumlin.gemspec
grumlin-0.14.3 grumlin.gemspec
grumlin-0.14.2 grumlin.gemspec