-
Notifications
You must be signed in to change notification settings - Fork 2
/
sanford.gemspec
26 lines (22 loc) · 1.04 KB
/
sanford.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sanford/version'
Gem::Specification.new do |gem|
gem.name = "sanford"
gem.version = Sanford::VERSION
gem.authors = ["Collin Redding", "Kelly Redding"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = "Sanford TCP protocol server for hosting services"
gem.description = "Sanford TCP protocol server for hosting services"
gem.homepage = "https://github.com/redding/sanford"
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_development_dependency("assert", ["~> 2.16.3"])
gem.add_dependency("dat-tcp", ["~> 0.8.2"])
gem.add_dependency("much-plugin", ["~> 0.2.0"])
gem.add_dependency("sanford-protocol", ["~> 0.12.0"])
end