Sha256: a5ab624f97c1804a2e09ae335a4adf455529aab485e8dcef03736d1ce4d062a6
Contents?: true
Size: 1.58 KB
Versions: 3
Compression:
Stored size: 1.58 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "koko_keywords/version" Gem::Specification.new do |spec| spec.name = "koko_keywords" spec.version = KokoKeywords::VERSION spec.authors = ["Kareem Kouddous"] spec.email = ["kkouddous@gmail.com"] spec.summary = "A ruby client for the Koko Keywords API" spec.description = "A ruby client for the Koko Keywords API. The client handles caching to ensure very low latency." spec.homepage = "https://api-docs.kokocares.org" spec.license = "MIT" spec.metadata = { 'bug_tracker_uri' => 'https://github.com/kokocares/keywords-client/issues', 'changelog_uri' => 'https://api-docs.kokocares.org/docs/changelog', 'documentation_uri' => 'https://api-docs.kokocares.org/docs/python', 'homepage_uri' => 'https://api-docs.kokocares.org', "source_code_uri" => "https://github.com/kokocares/keywords-client/tree/main/clients/ruby" } # 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('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + `ls ../clib`.split("\n").map { |s| "clib/#{s}" } end spec.require_paths = ["lib"] spec.add_dependency "ffi", "~> 1.15" spec.add_development_dependency "bundler", "< 2.4" spec.add_development_dependency "rake", "< 13.1" spec.add_development_dependency "rspec", "< 3.12" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
koko_keywords-0.3.2 | koko_keywords.gemspec |
koko_keywords-0.3.1 | koko_keywords.gemspec |
koko_keywords-0.3.0 | koko_keywords.gemspec |