forked from ruby-docx/docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocx.gemspec
20 lines (17 loc) · 836 Bytes
/
docx.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.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.add_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
s.add_dependency 'rubyzip', '~> 1.2', '>= 1.2.1'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rake', '~> 12.3'
end