-
Notifications
You must be signed in to change notification settings - Fork 108
/
SwiftyPrototype.podspec
25 lines (22 loc) · 1.3 KB
/
SwiftyPrototype.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = 'SwiftyPrototype'
s.version = '4.2.0'
s.summary = 'Prototyping/Faking library for Swift, with code generation. Auto-generates fakes/prototypes based on protocol definitions.'
s.description = <<-DESC
Library that uses metaprogramming technique to generate fakes/prototypes based on sources, makin it easier to prototype app.
DESC
s.homepage = 'https://github.com/MakeAWishFoundation/SwiftyMocky'
s.screenshots = 'https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/1.0.0/icon.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' }
s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s }
s.swift_versions = ['4.2', '5.0', '5.1', '5.1.2', '5.2', '5.3', '5.4', '5.5']
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.preserve_paths = '*'
s.source_files = 'Sources/{SwiftyPrototype,Shared}/**/*.swift'
s.resources = '{Sources/SwiftyPrototype/Prototype.swifttemplate}'
s.frameworks = 'Foundation'
s.dependency 'Sourcery', '~> 1.8.0'
end