Skip to content

Commit

Permalink
Update spec
Browse files Browse the repository at this point in the history
  • Loading branch information
yageek committed Apr 15, 2015
1 parent 9b34bcb commit 7db28ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bin/iostrust
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/ruby

require 'rubygems'
require '../lib/iostrust.rb'
require 'commander/import'
require 'iostrust'

program :name, 'ios Trust'
program :version, Iostrust::VERSION.to_s
Expand Down
18 changes: 7 additions & 11 deletions iostrust.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,16 @@ Gem::Specification.new do |spec|
spec.authors = ["Yannick heinrich"]
spec.email = ["yannick.heinrich@gmail.com"]

spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
spec.description = %q{TODO: Write a longer description or delete this line.}
spec.homepage = "TODO: Put your gem's website or public repo URL here."
spec.summary = "Tool installing certificate in the trus store of the ios simulators"
spec.description = %(
iostrust install a list of certificate 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 = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.files = %w{ README.md } + Dir["lib/**/*.rb"]
spec.executables = "iostrust"
spec.require_paths = ["lib"]

if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com' to prevent pushes to rubygems.org, or delete to allow pushes to any server."
end

spec.add_dependency "commander", "~> 4.3"
spec.add_dependency "commander", "~> 4.3"
spec.add_dependency "sqlite3"
end

0 comments on commit 7db28ca

Please sign in to comment.