From 342e6b7175ba770995e009b0bbebb5047f307117 Mon Sep 17 00:00:00 2001 From: Valeriy Bezuglyy Date: Sat, 20 Jul 2019 13:16:40 +0300 Subject: [PATCH] spec fixes --- .swift-version | 1 - Mirage.podspec | 29 ++++++++--------------------- 2 files changed, 8 insertions(+), 22 deletions(-) delete mode 100644 .swift-version diff --git a/.swift-version b/.swift-version deleted file mode 100644 index 5186d07..0000000 --- a/.swift-version +++ /dev/null @@ -1 +0,0 @@ -4.0 diff --git a/Mirage.podspec b/Mirage.podspec index bb9600a..4cba200 100644 --- a/Mirage.podspec +++ b/Mirage.podspec @@ -1,39 +1,26 @@ -# -# Be sure to run `pod lib lint MyLib.podspec' to ensure this is a -# valid spec and remove all comments before submitting the spec. -# -# Any lines starting with a # are optional, but encouraged -# -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html -# - Pod::Spec.new do |s| s.name = "Mirage" - s.version = "1.0.0" - s.summary = "Mirage is a lightweight mocking framework for swift projects." + s.version = "2.0.0" + s.summary = "Mirage is a mocking library for swift projects. The recommended way is to use github.com/valnoc/FataMorgana for Mirage mocks generation." s.description = <<-DESC -Mirage is a lightweight mocking framework for swift projects. +Mirage is a mocking library for swift projects. The recommended way is to use https://github.com/valnoc/FataMorgana for Mirage mocks generation to avoid writing them manually. Features. Using Mirage you can: - create mocks, stubs, partial mocks -- verify call times +- verify func call times - get call arguments history - -v1.0.0 - - version fix - -v0.3.2 - - fixed to use optional result DESC + s.homepage = "https://github.com/valnoc/Mirage" s.license = 'MIT' s.author = { "Valeriy Bezuglyy" => "valnocorner@gmail.com" } - s.source = { :git => "https://github.com/valnoc/Mirage.git", :tag => "v#{s.version}" } + s.source = { :git => "https://github.com/valnoc/Mirage.git", :tag => "#{s.version}" } + s.swift_version = '5.0' s.platform = :ios, '9.0' s.requires_arc = true - s.source_files = 'Mirage/**/*{.swift}' + s.source_files = 'Source/Mirage/**/*{.swift}' end