Sha256: 4e4801cb815f112ed85c66595d2706761d90f5118b9c97b61958a0c0747aa334
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mind_match/version" Gem::Specification.new do |spec| spec.name = "mindmatch" spec.version = MindMatch::VERSION spec.authors = ["MindMatch", "Hugo Duksis", "Kado Damball"] spec.email = ["admin@mindmatch.ai", "duksis@gmail.com", "kadodamball@hotmail.com"] spec.summary = %q{MindMatch api client library for Ruby} spec.description = %q{Api client library for Ruby based on the MindMatch graphql rest api} spec.homepage = "https://github.com/mindmatch/mindmatch-ruby" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |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"] spec.add_dependency "faraday", "~> 0.13" spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.6" spec.add_development_dependency "vcr", "~> 3.0" spec.add_development_dependency "webmock", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mindmatch-0.0.1.pre.alpha | mindmatch.gemspec |