Sha256: f85c8caf19afee68719cb686670d932d1e42a74d15e90bbdf93a707fcb85d126

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require_relative "lib/qismo/version"

Gem::Specification.new do |spec|
  spec.name          = "qismo"
  spec.version       = Qismo::VERSION
  spec.authors       = ["Nurcholis Art", "Qiscus"]
  spec.email         = ["nurcholis@qiscus.com"]

  spec.summary       = "Qiscus Multichannel Ruby Client"
  spec.homepage      = "https://multichannel.qiscus.com"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    %x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test|spec|features|examples)/}) }
  end

  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # spec.add_runtime_dependency("activesupport", "~> 7.0")
  spec.add_runtime_dependency("http", "~> 5.0")

  spec.add_development_dependency("rubocop-shopify", "~> 2.3")
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
qismo-0.1.8 qismo.gemspec
qismo-0.1.5 qismo.gemspec
qismo-0.1.4 qismo.gemspec
qismo-0.1.2 qismo.gemspec
qismo-0.1.1 qismo.gemspec