Sha256: 5ae252b0b75eb00f369af8afc53c2a535ea00cc5665b17f0ad39606bbfdec839
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'contactology/version' Gem::Specification.new do |s| s.name = 'contactology' s.version = Contactology::VERSION s.authors = ['Nathaniel Bibler'] s.email = ['git@nathanielbibler.com'] s.homepage = 'https://github.com/nbibler/contactology' s.summary = %q{A Ruby interface to the Contactology email marketing API} s.description = %q{This library provides Ruby calls to interact with the Contactology email marketing API} s.files = `git ls-files`.split($/) s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } s.require_paths = ['lib'] s.add_dependency 'hashie', '>= 1.1', '< 3.0' s.add_dependency 'httparty', '>= 0.7.8', '<= 0.10.2' s.add_dependency 'multi_json', '~> 1.0' s.add_development_dependency 'vcr', '~> 2.0' s.add_development_dependency 'webmock', '~> 1.6' s.add_development_dependency 'rspec', '~> 2.0' s.add_development_dependency 'factory_girl', '~> 4.0' s.add_development_dependency 'rack', '~> 1.2' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
contactology-1.0.0 | contactology.gemspec |