Sha256: 8706d6526eb5ca45f5611d6326b1f35f50b491245b0c50d4180717b23954b7ad

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require_relative "lib/graphlit/version"

Gem::Specification.new do |spec|
  spec.name = "graphlit"
  spec.version = Graphlit::VERSION
  spec.authors = ["Obie Fernandez"]
  spec.email = ["obiefernandez@gmail.com"]

  spec.summary = "Ruby SDK Client Library for Graphlit API"
  spec.homepage = "https://github.com/OlympiaAI/graphlit"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 3.2.2"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/OlympiaAI/graphlit"
  spec.metadata["changelog_uri"] = "https://github.com/OlympiaAI/graphlit/blob/main/CHANGELOG.md"

  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Uncomment to register a new dependency of your gem
  # spec.add_dependency "example-gem", "~> 1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
graphlit-0.1.0 graphlit.gemspec