Skip to content

Commit

Permalink
spec fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
valnoc committed Jul 20, 2019
1 parent 4ceb3ec commit 342e6b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

29 changes: 8 additions & 21 deletions Mirage.podspec
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 342e6b7

Please sign in to comment.