Sha256: 69268bf3e5832f4c8849d91aa099ba8322587ae23282c21759f3104f0567700b
Contents?: true
Size: 935 Bytes
Versions: 6
Compression:
Stored size: 935 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "allq_rest/version" Gem::Specification.new do |s| s.name = "allq_rest" s.version = Allq::VERSION s.platform = Gem::Platform::RUBY s.authors = ["support@blitline.com"] s.email = ["support@blitline.com"] s.homepage = "http://www.blitline.com" s.summary = "Ruby REST client for Allq platform" s.description = "Allq API Client" # TODO uncommnet and update below with a proper license s.license = "Apache 2.0" s.required_ruby_version = "> 2.3" s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1' s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0' 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
Version data entries
6 entries across 6 versions & 1 rubygems