Sha256: cfa93d1ad023117610a8e58a2cf14e3c39455052c1d924139ba0026f1adb9d45
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'trumail/version' Gem::Specification.new do |spec| spec.name = 'trumail' spec.version = Trumail::VERSION spec.authors = ['Juan Gomez'] spec.email = ['j.gomez@drexed.com'] spec.summary = 'Trumail Ruby SDK.' spec.description = 'Trumail Ruby SDK for interacting with the Trumail API.' spec.homepage = 'http://drexed.github.io/trumail' spec.license = 'MIT' 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 = %w[lib support] spec.add_runtime_dependency 'ox' spec.add_runtime_dependency 'typhoeus' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'fasterer' spec.add_development_dependency 'reek' spec.add_development_dependency 'rubocop' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trumail-0.1.0 | trumail.gemspec |