-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_api_pack_active_campaign.gemspec
More file actions
42 lines (35 loc) · 1.8 KB
/
Copy pathruby_api_pack_active_campaign.gemspec
File metadata and controls
42 lines (35 loc) · 1.8 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
require_relative 'lib/ruby_api_pack_active_campaign/version'
Gem::Specification.new do |spec|
spec.name = 'ruby_api_pack_active_campaign'
spec.version = RubyApiPackActiveCampaign::VERSION
spec.authors = ['PHCDevworks', 'Brad Potts']
spec.email = ['info@phcdevworks.com', 'brad.potts@phcdevworks.com']
spec.homepage = 'https://phcdevworks.com/'
spec.summary = 'API Pack for Active Campaign API.'
spec.description = 'RubyApiPackActiveCampaign is a Ruby gem designed to simplify interaction with the ' \
'ActiveCampaign API, offering an easy-to-use interface for managing contacts, lists, ' \
'and automations within ActiveCampaign. It is built on ruby_api_pack_core for its ' \
'shared HTTP client and response handling.'
spec.license = 'MIT'
# Specify the required Ruby version
spec.required_ruby_version = '>= 3.3.0'
# Gem Meta Data
spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/phcdevworks/ruby_api_pack_active_campaign/'
spec.metadata['changelog_uri'] = 'https://github.com/phcdevworks/ruby_api_pack_active_campaign/releases'
spec.metadata['rubygems_mfa_required'] = 'true'
gemspec = File.basename(__FILE__)
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
ls.readlines("\x0", chomp: true).reject do |f|
(f == gemspec) ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
end
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
# Main Dependencies
spec.add_dependency 'ruby_api_pack_core', '~> 0.1'
end