-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvantiv_lite.gemspec
More file actions
25 lines (20 loc) · 903 Bytes
/
Copy pathvantiv_lite.gemspec
File metadata and controls
25 lines (20 loc) · 903 Bytes
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
require File.expand_path('lib/vantiv_lite/version', __dir__)
Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.2.0'
s.name = 'vantiv_lite'
s.version = VantivLite.version
s.authors = %w[Joshua Hansen]
s.email = %w[joshua@epicbanality.com]
s.summary = 'A Simplified Vanitiv/WorldPay (LitleOnline) API Library'
s.description = s.summary
s.homepage = 'https://github.com/binarypaladin/vantiv_lite'
s.license = 'MIT'
s.files = %w[LICENSE.txt README.md] + Dir['lib/**/*.rb']
s.require_paths = %w[lib]
s.add_development_dependency 'bundler', '~> 1.16'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'nokogiri', '~> 1'
s.add_development_dependency 'ox', '~> 2'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rubocop', '~> 0.56'
end