Sha256: 7abf80a5db092ad45de72879a974f4c967b21c6d4048b0de6afeece0f3cf6f40

Contents?: true

Size: 965 Bytes

Versions: 1

Compression:

Stored size: 965 Bytes

Contents

# -*- encoding: utf-8 -*-

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |s|
  s.name = "constantcontact"
  s.version = '2.2.1'
  s.platform = Gem::Platform::RUBY
  s.authors = ["ConstantContact"]
  s.homepage = "http://www.constantcontact.com"
  s.summary = %q{Constant Contact SDK for Ruby}
  s.email = "webservices@constantcontact.com"
  s.description = "Ruby library for interactions with Constant Contact v2 API"
  s.license = "MIT"

  s.files = [
    '.rspec',
    'constantcontact.gemspec',
    'README.md'
  ]
  s.files += Dir['lib/**/*.rb']
  s.executables = []
  s.require_paths = [ "lib" ]
  s.test_files = Dir['spec/**/*_spec.rb']
  
  s.add_runtime_dependency("rest-client", '~> 1.6', '>= 1.6.7')
  s.add_runtime_dependency("json", '~> 1.8', '>= 1.8.1')
  s.add_runtime_dependency('mime-types', '~> 2.4', '>= 2.4.1')
  s.add_development_dependency("rspec", '~> 2.14')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
constantcontact-2.2.1 constantcontact.gemspec