-
Notifications
You must be signed in to change notification settings - Fork 5
/
bypass.gemspec
25 lines (22 loc) · 1.02 KB
/
bypass.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bypass/version'
Gem::Specification.new do |gem|
gem.name = "bypass"
gem.version = Bypass::VERSION
gem.authors = ["Derrick Reimer"]
gem.email = ["[email protected]"]
gem.description = "Mutate URLs and hyperlinks in HTML and plain text documents"
gem.summary = "Mutate URLs and hyperlinks in HTML and plain text documents with ease"
gem.homepage = "https://github.com/djreimer/bypass"
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_dependency "nokogiri", "~> 1.5"
gem.add_dependency "addressable", "~> 2.0"
gem.add_development_dependency "minitest", "~> 5.0"
gem.add_development_dependency "shoulda-context", "~> 1.2"
gem.add_development_dependency "mocha"
end