-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecipeDetails.podspec
24 lines (21 loc) · 1.11 KB
/
RecipeDetails.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
Pod::Spec.new do |s|
s.name = 'RecipeDetails'
s.version = '2.0.0'
s.summary = '\'RecipeDetails\' module.'
s.homepage = 'https://github.com/iCookbook/RecipeDetails'
s.screenshots = 'https://user-images.githubusercontent.com/60363270/200943946-6b736b4d-5516-4919-8dab-6abf6891488e.png',
'https://user-images.githubusercontent.com/60363270/200943981-b91e7a58-35d3-4cf4-90aa-e250d04e5572.png',
'https://user-images.githubusercontent.com/60363270/200944012-b6a73c53-7f3a-4f5b-bdd3-747830e338fc.png'
s.author = { 'htmlprogrammist' => '60363270+htmlprogrammist@users.noreply.github.com' }
s.source = { :git => 'https://github.com/iCookbook/RecipeDetails.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'RecipeDetails/Sources/**/*.{swift}'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'RecipeDetails/Tests/**/*.{swift}'
end
s.dependency 'CommonUI'
s.dependency 'Resources'
s.dependency 'Models'
s.dependency 'Persistence'
end