Sha256: aaa837ae0ce530c4c87b6751ef83aaf2aacf009b1cf8a026a22f771269f5c588
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'quintly/version' Gem::Specification.new do |spec| spec.name = "quintly" spec.version = Quintly::VERSION spec.authors = ["Davide Santangelo"] spec.email = ["davide@chorally.com"] spec.summary = %q{Gem to wrap Quintly API} spec.description = %q{Basic API implementation for Quintly API https://api.quintly.com} spec.homepage = "https://github.com/chorally/quintly" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency 'rspec' spec.add_development_dependency "vcr" spec.add_development_dependency "typhoeus" spec.required_ruby_version = ">= 1.9.3" spec.add_dependency "faraday" spec.add_dependency "json" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
quintly-0.1.3 | quintly.gemspec |
quintly-0.1.2 | quintly.gemspec |
quintly-0.1.1 | quintly.gemspec |
quintly-0.1.0 | quintly.gemspec |