-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmailchimp_api_v3.gemspec
More file actions
executable file
·23 lines (19 loc) · 1020 Bytes
/
mailchimp_api_v3.gemspec
File metadata and controls
executable file
·23 lines (19 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mailchimp_api_v3/version'
Gem::Specification.new do |spec|
spec.name = 'mailchimp_api_v3'
spec.version = Mailchimp::VERSION
spec.authors = ['Dominic Sayers']
spec.email = ['dominic@sayers.cc']
spec.description = 'A simple gem to interact with Mailchimp through their API v3'
spec.summary = 'Example: mailchimp.lists("My first list").member("ann@example.com")'
spec.homepage = 'https://github.com/dominicsayers/mailchimp_api_v3'
spec.license = 'BSD-2-Clause'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).reject { |file| file =~ %r{^(spec|script)/} }
spec.executables = spec.files.grep(%r{^bin\/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features|coverage|script)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'rest-client', '~> 2' # https://github.com/rest-client/rest-client/issues/369
end