-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcxml-ruby.gemspec
27 lines (22 loc) · 1.02 KB
/
cxml-ruby.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
# frozen_string_literal: true
require(File.expand_path('lib/cxml/version', __dir__))
Gem::Specification.new do |s|
s.name = 'cxml-ruby'
s.version = CXML::VERSION
s.license = 'MIT'
s.summary = 'Parse/generate documents with the cXML protocol'
s.description = 'Ruby library to parse/generate documents with the cXML protocol'
s.homepage = 'https://github.com/officeluv/cxml-ruby'
s.authors = ['Josh Beckman', 'Eleni Chappen']
s.email = ['[email protected]', '[email protected]']
s.required_ruby_version = '>= 2.4'
s.add_dependency('ox', '~> 2.13')
s.add_development_dependency('pry', '~> 0.12')
s.add_development_dependency('rake', '~> 13.0')
s.add_development_dependency('rspec', '~> 3.9')
s.add_development_dependency('rubocop', '~> 0.81')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
end