Sha256: aff22a79854edf696bf2e86cbabf58fa4860495b6435d349ae827fe13fc20dd4

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 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.6.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"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
grumlin-0.13.1 grumlin.gemspec
grumlin-0.13.0 grumlin.gemspec
grumlin-0.12.5 grumlin.gemspec
grumlin-0.12.4 grumlin.gemspec
grumlin-0.12.3 grumlin.gemspec
grumlin-0.12.2 grumlin.gemspec
grumlin-0.12.1 grumlin.gemspec
grumlin-0.12.0 grumlin.gemspec