Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
d-dotsenko committed Apr 6, 2019
0 parents commit ab5ff41
Show file tree
Hide file tree
Showing 725 changed files with 11,829 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
@@ -0,0 +1,34 @@
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
Pods/
Podfile.lock

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build
16 changes: 16 additions & 0 deletions DDAnimatedSwitch.podspec
@@ -0,0 +1,16 @@
Pod::Spec.new do |spec|

spec.name = "DDAnimatedSwitch"
spec.platform = :ios
spec.summary = "DDAnimatedSwitch allows a user to create animated switch"
spec.requires_arc = true
spec.version = "0.0.1"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Dmitriy Dotsenko" => "d.dotsenko@icloud.com" }
spec.homepage = "https://github.com/d-dotsenko/DDAnimatedSwitch"
spec.source = { :git => "https://github.com/d-dotsenko/DDAnimatedSwitch.git", :tag => "#{spec.version}" }
spec.frameworks = "UIKit"
spec.source_files = "DDAnimatedSwitch/**/*.{h,swift}"
spec.swift_version = "4.2"
spec.ios.deployment_target = "9.0"
end

0 comments on commit ab5ff41

Please sign in to comment.