-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwoff.gemspec
28 lines (23 loc) · 1.06 KB
/
woff.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
28
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'woff/version'
Gem::Specification.new do |gem|
gem.name = "woff"
gem.version = WOFF::VERSION
gem.authors = ["Josh Hepworth"]
gem.licenses = "MIT"
gem.email = ["[email protected]"]
gem.description = %q{Handles the management and modification of WOFF and WOFF2 formatted files.}
gem.summary = %q{Reading and modifying binary WOFF and WOFF2 files.}
gem.homepage = "https://github.com/friendsoftheweb/woff-rb"
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.required_ruby_version = ">= 2.2.0"
gem.add_dependency "bindata", "~> 2.3"
gem.add_dependency "brotli", "~> 0.1"
gem.add_development_dependency "rake", "~> 11.2"
gem.add_development_dependency "rspec", "~> 3.5"
gem.add_development_dependency "pry-byebug", "~> 3.4"
end