forked from xendit/xendit-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xendit.gemspec
32 lines (21 loc) · 862 Bytes
/
xendit.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
# frozen_string_literal: true
require_relative 'lib/xendit/version'
Gem::Specification.new do |spec|
spec.name = 'xendit'
spec.version = Xendit::VERSION
spec.summary = 'Xendit Ruby API client library'
spec.authors = ['@yongquanben']
spec.email = 'benjamin@xendit.co'
spec.homepage = 'https://github.com/xendit/xendit-ruby'
spec.licenses = ['MIT']
spec.required_ruby_version = '>= 2.5'
spec.files = Dir['README.md', '{examples,lib,spec}/**/*.rb',
'xendit.gemspec',
'Gemfile', 'Rakefile']
spec.executables << 'xendit'
spec.add_dependency 'faraday', '~> 1.3'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rubocop', '~> 1.9'
spec.add_development_dependency 'rubocop-performance', '~> 1.9'
spec.add_development_dependency 'rspec', '~> 3.6'
end