-
-
Notifications
You must be signed in to change notification settings - Fork 171
/
docx.gemspec
22 lines (19 loc) · 926 Bytes
/
docx.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.unshift File.expand_path("../lib", __FILE__)
require 'docx/version'
Gem::Specification.new do |s|
s.name = 'docx'
s.version = Docx::VERSION
s.licenses = ['MIT']
s.summary = 'a ruby library/gem for interacting with .docx files'
s.description = 'thin wrapper around rubyzip and nokogiri as a way to get started with docx files'
s.authors = ['Christopher Hunt', 'Marcus Ortiz', 'Higgins Dragon', 'Toms Mikoss', 'Sebastian Wittenkamp']
s.email = ['[email protected]']
s.homepage = 'https://github.com/chrahunt/docx'
s.files = Dir['README.md', 'LICENSE.md', 'lib/**/*.rb']
s.required_ruby_version = '>= 2.7.0'
s.add_dependency 'nokogiri', '~> 1.13', '>= 1.13.0'
s.add_dependency 'rubyzip', '~> 2.0'
s.add_development_dependency 'coveralls_reborn', '~> 0.21'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.7'
end