forked from gshutler/useragent
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathuseragent.gemspec
More file actions
25 lines (18 loc) · 937 Bytes
/
useragent.gemspec
File metadata and controls
25 lines (18 loc) · 937 Bytes
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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'user_agent/gem_version'
Gem::Specification.new do |s|
s.name = 'useragent'
s.version = UserAgent::GemVersion::VERSION
s.homepage = 'https://github.com/art19/useragent'
s.summary = 'HTTP User Agent parser'
s.description = 'HTTP User Agent parser'
s.files = Dir['LICENSE', 'README.md', 'CHANGELOG.md', 'lib/**/*.rb']
s.add_development_dependency 'pry', '~> 0.11.3'
s.add_development_dependency 'rake', '~> 13.0.1'
s.add_development_dependency 'rspec', '~> 3.9.0'
s.add_development_dependency 'yard', '~> 0.9.19'
s.authors = ['Joshua Peek', 'Garry Shutler', 'Keith Gable', 'Siu Kit Wong', 'Liam Bailey', 'Louise Yang', 'Johannes Vetter']
s.email = ['garry@robustsoftware.co.uk', 'keith@art19.com', 'kit@art19.com', 'liambly@amazon.com', 'louise@art19.com', 'johannes@art19.com']
s.license = 'MIT'
end