forked from yageek/iostrust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iostrust.gemspec
24 lines (20 loc) · 878 Bytes
/
iostrust.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'iostrust/version'
Gem::Specification.new do |spec|
spec.name = "iostrust"
spec.version = Iostrust::VERSION
spec.authors = ["Yannick heinrich"]
spec.email = ["[email protected]"]
spec.summary = "Add certificates in the trust store of the ios simulators"
spec.description = %(
iostrust installs a list of certificates in all the simulators located on your computer.
It uses sqlite and openssl from the Ruby stdlib.)
spec.homepage = "https://github.com/yageek/iostrust"
spec.files = %w{ README.md LICENSE} + Dir["lib/**/*.rb"]
spec.executables = "iostrust"
spec.require_paths = ["lib"]
spec.add_dependency "commander", "~> 4.3"
spec.add_dependency "sqlite3"
end