-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpio.gemspec
33 lines (24 loc) · 954 Bytes
/
pio.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
29
30
31
32
33
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pio/version'
Gem::Specification.new do |gem|
gem.name = 'pio'
gem.version = Pio::VERSION
gem.summary = 'Packet parser and generator.'
gem.description = 'Pure ruby packet parser and generator.'
gem.licenses = %w[GPLv2 MIT]
gem.authors = ['Yasuhito Takamiya']
gem.email = ['yasuhito@gmail.com']
gem.homepage = 'http://github.com/trema/pio'
gem.files = %w[CONTRIBUTING.md Rakefile pio.gemspec]
gem.files += Dir.glob('lib/**/*.rb')
gem.files += Dir.glob('spec/**/*')
gem.require_paths = ['lib']
gem.extra_rdoc_files = %w[README.md CHANGELOG.md CONTRIBUTING.md]
gem.test_files = Dir.glob('spec/**/*')
gem.test_files += Dir.glob('features/**/*')
gem.required_ruby_version = '>= 2.3.0'
gem.add_dependency 'bindata', '~> 2.1.0'
gem.add_dependency 'activesupport', '~> 5.1.0'
end