Skip to content

Commit

Permalink
Add podspecs for automation frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
tattn committed Dec 29, 2017
1 parent df84961 commit 0af3586
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
24 changes: 24 additions & 0 deletions SwipeTransitionAutoSwipeBack.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'SwipeTransitionAutoSwipeBack'
s.version = '0.0.6'
s.summary = 'Allows trendy transitions using swipe gesture such as "swipe back".'

s.description = <<-DESC
SwipeTransition allows trendy transitions using swipe gesture such as "swipe back".
DESC

s.homepage = 'https://github.com/tattn/SwipeTransition'
# s.screenshots = 'https://github.com/tattn/SwipeTransition/raw/master/docs/assets/demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'git' => '[email protected]' }
s.source = { :git => 'https://github.com/tattn/SwipeTransition.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tanakasan2525'

s.ios.deployment_target = '8.0'

s.source_files = 'Sources/Automation/AutoSwipeBack/**/*'

s.public_header_files = 'Sources/Automation/AutoSwipeBack/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'SwipeTransition', "~> #{s.version.to_s}"
end
24 changes: 24 additions & 0 deletions SwipeTransitionAutoSwipeToDismiss.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'SwipeTransitionAutoSwipeToDismiss'
s.version = '0.0.6'
s.summary = 'Allows trendy transitions using swipe gesture such as "swipe back".'

s.description = <<-DESC
SwipeTransition allows trendy transitions using swipe gesture such as "swipe back".
DESC

s.homepage = 'https://github.com/tattn/SwipeTransition'
# s.screenshots = 'https://github.com/tattn/SwipeTransition/raw/master/docs/assets/demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'git' => '[email protected]' }
s.source = { :git => 'https://github.com/tattn/SwipeTransition.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tanakasan2525'

s.ios.deployment_target = '8.0'

s.source_files = 'Sources/Automation/AutoSwipeToDismiss/**/*'

s.public_header_files = 'Sources/Automation/AutoSwipeToDismiss/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'SwipeTransition', "~> #{s.version.to_s}"
end

0 comments on commit 0af3586

Please sign in to comment.