-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpanel-email.gemspec
More file actions
36 lines (31 loc) · 1.3 KB
/
cpanel-email.gemspec
File metadata and controls
36 lines (31 loc) · 1.3 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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cpanel/version'
Gem::Specification.new do |spec|
spec.name = 'cpanel-email'
spec.version = CpanelEmail::VERSION
spec.homepage = 'https://github.com/your-org/cpanel-email'
spec.license = 'MIT'
spec.description = 'Ruby interface for the cPanel API to manage email forwarders and accounts.'
spec.summary = 'Ruby interface for the cPanel API to manage email forwarders and accounts.'
spec.authors = ['C.S.V. Alpha', 'Jorai Geertsema']
spec.email = 'ict@csvalpha.nl'
spec.files = %w[LICENSE README.md cpanel-email.gemspec] + Dir['lib/**/*.rb']
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 3.2'
spec.add_dependency 'rest-client', '~> 1.0'
end
Gem::Specification.new do |spec|
spec.name = 'cpanel'
spec.version = Cpanel::VERSION
spec.homepage = 'https://cpanel.com'
spec.license = 'MIT'
spec.description = 'Ruby interface for the Cpanel API'
spec.summary = 'Ruby interface for the Cpanel API'
spec.authors = ['C.S.V. Alpha', 'Jorai Geertsema']
spec.email = 'ict@csvalpha.nl'
spec.files = %w[LICENSE README.md cpanel.gemspec] + Dir['lib/**/*.rb']
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 3.2'
spec.add_dependency 'rest-client', '~> 1.0'
end