# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "minty/version" Gem::Specification.new do |s| s.name = "minty" s.version = MintyApi::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Minty"] s.email = [""] s.homepage = "https://www.minty.page" s.summary = "Minty API Ruby Gem" s.description = "Minty API" s.license = "Unlicense" s.required_ruby_version = ">= 2.4" s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1' s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? } s.test_files = `find spec/*`.split("\n") s.executables = [] s.require_paths = ["lib"] end