-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby_api_pack_cloudways.gemspec
33 lines (27 loc) · 1.4 KB
/
ruby_api_pack_cloudways.gemspec
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_api_pack_cloudways/version'
Gem::Specification.new do |spec|
spec.name = 'ruby_api_pack_cloudways'
spec.version = RubyApiPackCloudways::VERSION
spec.authors = ['PHCDevworks', 'Brad Potts']
spec.email = ['info@phcdevworks.com', 'brad.potts@phcdevworks.com']
spec.homepage = 'https://github.com/phcdevworks/ruby_api_pack_cloudways/wiki'
spec.summary = 'API Pack for Cloudways'
spec.description = 'RubyApiPackCloudways is a Ruby gem for interacting with the Cloudways API. It provides easy access to
providers, server sizes, apps, and packages, with built-in OAuth authentication for secure API requests.'
spec.license = 'MIT'
# Specify the required Ruby version
spec.required_ruby_version = '>= 2.7.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_cloudways/'
spec.metadata['changelog_uri'] = 'https://github.com/phcdevworks/ruby_api_pack_cloudways/releases'
spec.files = Dir['{lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
spec.require_paths = ['lib']
# Main Dependencies
spec.add_dependency 'httparty', '~> 0.22.0'
spec.add_dependency 'oj', '~> 3.16'
end