-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ab5ff41
Showing
725 changed files
with
11,829 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" => "[email protected]" } | ||
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 |
Oops, something went wrong.