forked from rikas/iosdevices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ios-devices.gemspec
29 lines (23 loc) · 1.06 KB
/
ios-devices.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ios/devices'
Gem::Specification.new do |spec|
spec.name = 'ios-devices'
spec.version = Ios::Devices::VERSION
spec.authors = ['Ricardo Otero']
spec.email = ['oterosantos@gmail.com']
spec.summary = 'iOS device model translation from Apple device types.'
spec.description = 'With this gem you can read the device type that every iOS device can send
and translate it to a proper model name.'
spec.homepage = 'http://github.com/rikas/iosdevices'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake', '~> 13.0.6'
spec.add_development_dependency 'rspec'
end