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
|
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'device_detector/version'
Gem::Specification.new do |spec|
spec.name = 'device_detector'
spec.version = DeviceDetector::VERSION
spec.authors = ['Mati Sójka', 'Ben Zimmer']
spec.email = ['yagooar@gmail.com']
spec.summary = %q{Precise and fast user agent parser and device detector}
spec.description = %q{Precise and fast user agent parser and device detector, backed by the largest and most up-to-date agent and device database}
spec.homepage = 'http://podigee.github.io/device_detector'
spec.license = 'LGPL-3.0'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = []
spec.test_files = spec.files.grep(%r{^(spec)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.3'
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'pry', '>= 0.10'
end
|