forked from constantcontact/ruby-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstantcontact.gemspec
More file actions
30 lines (26 loc) · 877 Bytes
/
constantcontact.gemspec
File metadata and controls
30 lines (26 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- 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 = '4.1.0'
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", '~> 2.0')
s.add_runtime_dependency("json", '~> 2.1')
s.add_development_dependency("rspec", '~> 3.6')
end