From 7db28cad336f700f1349b6a46efd1bc1e48a5e3c Mon Sep 17 00:00:00 2001 From: Yannick heinrich Date: Wed, 15 Apr 2015 23:46:31 +0200 Subject: [PATCH] Update spec --- bin/iostrust | 2 +- iostrust.gemspec | 18 +++++++----------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/bin/iostrust b/bin/iostrust index 857c6c4..79579ac 100755 --- a/bin/iostrust +++ b/bin/iostrust @@ -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 diff --git a/iostrust.gemspec b/iostrust.gemspec index 7b8ffe3..9935a1d 100644 --- a/iostrust.gemspec +++ b/iostrust.gemspec @@ -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