-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfat_zebra.gemspec
More file actions
32 lines (25 loc) · 1.16 KB
/
fat_zebra.gemspec
File metadata and controls
32 lines (25 loc) · 1.16 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fat_zebra/version'
Gem::Specification.new do |s|
s.name = 'fat_zebra'
s.version = FatZebra::VERSION
s.authors = ['Fat Zebra']
s.email = ['support@fatzebra.com']
s.homepage = 'https://github.com/fatzebra/Ruby-Library'
s.summary = 'Fat Zebra payments gem - integrate your ruby app with Fat Zebra'
s.description = 'Provides integration with the Fat Zebra internet payment gateway (www.fatzebra.com), including purchase, refund, auth, capture and recurring billing functionality.'
s.metadata['homepage_uri'] = s.homepage
s.metadata['source_code_uri'] = s.homepage
s.metadata['rubygems_mfa_required'] = 'true'
s.files = Dir.glob('lib/**/*') + %w[README.md fat_zebra.gemspec]
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.2'
s.add_development_dependency 'byebug'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
end