-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcdek_api_client.gemspec
More file actions
27 lines (21 loc) · 1.17 KB
/
cdek_api_client.gemspec
File metadata and controls
27 lines (21 loc) · 1.17 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
# frozen_string_literal: true
require_relative 'lib/cdek_api_client/version'
Gem::Specification.new do |spec|
spec.name = 'cdek_api_client'
spec.version = CDEKApiClient::VERSION
spec.authors = ['Damir Mukimov']
spec.email = ['mukimov.d@gmail.com']
spec.summary = 'A Ruby client for the CDEK API'
spec.description = 'This gem provides a Ruby client for interacting with the CDEK API, including order creation, tracking, and tariff calculation.'
spec.homepage = 'https://glowing-pixels.com/cdek_api_client'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', 'README.md', 'CHANGELOG.md']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/SamyRai/cdek_api_client'
spec.metadata['bug_tracker_uri'] = 'https://github.com/SamyRai/cdek_api_client/issues'
spec.metadata['changelog_uri'] = 'https://github.com/SamyRai/cdek_api_client/blob/main/CHANGELOG.md'
spec.metadata['documentation_uri'] = 'https://www.rubydoc.info/gems/cdek_api_client'
spec.metadata['rubygems_mfa_required'] = 'true'
end