-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathRye.podspec
More file actions
26 lines (17 loc) · 799 Bytes
/
Rye.podspec
File metadata and controls
26 lines (17 loc) · 799 Bytes
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
# coding: utf-8
Pod::Spec.new do |spec|
spec.name = "Rye"
spec.version = "3.1.1"
spec.summary = "Rye allows you to present non intrusive alerts to your users. You can choose to display the default Rye alert or your own custom UIView."
spec.homepage = "https://github.com/nodes-ios/Rye"
spec.author = { "Nodes Agency - iOS" => "ios@nodes.dk" }
spec.license = { :type => 'MIT', :file => './LICENSE' }
spec.platform = :ios
spec.source = { :git => "https://github.com/nodes-ios/Rye.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = '11'
spec.swift_version = '5.1'
spec.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.1' }
spec.subspec 'Rye' do |subspec|
subspec.ios.source_files = 'Rye/Rye/**/*.swift'
end
end