forked from adamalbrecht/docx_replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocx_replace.gemspec
21 lines (19 loc) · 928 Bytes
/
docx_replace.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'docx_replace/version'
Gem::Specification.new do |gem|
gem.name = "docx_replace"
gem.version = DocxReplace::VERSION
gem.authors = ["Adam Albrecht"]
gem.email = ["adam.albrecht@gmail.com"]
gem.description = %q{Find and replace variables inside a Micorsoft Word (.docx) template}
gem.summary = %q{Find and replace variables inside a Micorsoft Word (.docx) template}
gem.homepage = "https://github.com/adamalbrecht/docx_replace"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'rubyzip', '~> 1.1', '>= 1.1.6'
end