-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkpm.gemspec
More file actions
26 lines (21 loc) · 847 Bytes
/
kpm.gemspec
File metadata and controls
26 lines (21 loc) · 847 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
26
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'kpm/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'killbill-kpm-ui'
s.version = KPM::VERSION
s.author = 'Kill Bill core team'
s.email = 'killbilling-users@googlegroups.com'
s.homepage = 'https://killbill.io'
s.summary = 'Kill Bill KPM UI mountable engine'
s.description = 'Rails UI plugin for the KPM plugin.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*'] + %w[MIT-LICENSE Rakefile README.md]
s.metadata['rubygems_mfa_required'] = 'true'
s.add_dependency 'killbill-assets-ui'
s.add_dependency 'killbill-client'
s.add_dependency 'ld-eventsource', '~> 1.0.1'
s.add_dependency 'rails', '~> 7.0'
end