Skip to content

Commit

Permalink
Update podspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Casanova committed Aug 19, 2019
1 parent 1bf1645 commit a88dcad
Show file tree
Hide file tree
Showing 8 changed files with 96 additions and 75 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Example/RCNPopupController/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
26 changes: 12 additions & 14 deletions RCNPopupController.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,22 @@
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = 'RCNPopupController'
s.version = '1.0.1'
s.summary = 'A versatile Swift popup for iOS'
Pod::Spec.new do |spec|
spec.name = 'RCNPopupController'
spec.version = '1.0.2'
spec.summary = 'A versatile Swift popup for iOS'

s.description = <<-DESC
spec.description = <<-DESC
RCNPopupController is a simple Swift class to show a custom popup in a different ways with different effects. You can customise where the popup will appear and which effect you want to apply.
The class is based on CNPPopupController.
DESC

s.homepage = 'https://github.com/rcasanovan/RCNPopupController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Ricardo Casanova'
s.source = { :git => 'https://github.com/rcasanovan/RCNPopupController.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/rcasanovan'
s.ios.deployment_target = '9.0'
s.source_files = 'RCNPopupController/Classes'
s.frameworks = 'UIKit'
s.swift_version = '4.0'
spec.homepage = 'https://github.com/rcasanovan/RCNPopupController'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "Ricardo Casanova" => "ricardo.casanova@outlook.com" }
spec.ios.deployment_target = '9.3'
spec.swift_version = '4.0'
spec.source = { :git => "https://github.com/rcasanovan/RCNPopupController.git", :tag => "#{spec.version}" }
spec.source_files = "RCNPopupController/**/*.{h,m,swift}"
end

0 comments on commit a88dcad

Please sign in to comment.