-
Notifications
You must be signed in to change notification settings - Fork 18
/
Skopelos.podspec
35 lines (29 loc) · 1.52 KB
/
Skopelos.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
26
27
28
29
30
31
32
33
34
35
#
# Be sure to run `pod lib lint Skopelos.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Skopelos'
s.version = '2.4.3'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.summary = 'Simply all you need for doing Core Data. Swift flavour.'
s.description = <<-DESC
A minimalistic, thread safe, non-boilerplate and super easy to use version of Active Record on Core Data. Simply all you need for doing Core Data. Swift flavour.
DESC
s.homepage = 'https://github.com/albertodebortoli/Skopelos'
s.author = { 'Alberto De Bortoli' => '[email protected]' }
s.source = { :git => 'https://github.com/albertodebortoli/Skopelos.git', :tag => "#{s.version}" }
s.homepage = 'https://github.com/albertodebortoli/Skopelos'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alberto De Bortoli' => '[email protected]' }
s.source = { :git => 'https://github.com/albertodebortoli/Skopelos.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/albertodebo'
s.module_name = 'Skopelos'
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.source_files = 'Sources/Skopelos/Classes/**/*'
s.frameworks = ["Foundation", "UIKit", "CoreData"]
end