-
Notifications
You must be signed in to change notification settings - Fork 46
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
Showing
29 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
Empty file.
Empty file.
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ Pod::Spec.new do |s| | |
s.description = "SwipeViewController is an easy and quick way to implement PageViewController with addition of buttons at the top of the view." | ||
|
||
s.homepage = "https://github.com/fortmarek/SwipeViewController" | ||
s.license = 'MIT' | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "fortmarek" => "[email protected]" } | ||
s.source = { :git => "https://github.com/fortmarek/SwipeViewController.git", :tag => s.version.to_s } | ||
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' } | ||
|
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 |
---|---|---|
|
@@ -78,8 +78,8 @@ | |
F8FDADBB22B633A300EF23E3 /* SwipeViewControllerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwipeViewControllerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
F8FDADC222B633A300EF23E3 /* SwipeViewControllerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwipeViewControllerTests.swift; sourceTree = "<group>"; }; | ||
F8FDADC422B633A300EF23E3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | ||
F8FDADD122B633D700EF23E3 /* SwipeButtonWithImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SwipeButtonWithImage.swift; path = Pod/Classes/SwipeButtonWithImage.swift; sourceTree = SOURCE_ROOT; }; | ||
F8FDADD222B633D700EF23E3 /* SwipeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SwipeViewController.swift; path = Pod/Classes/SwipeViewController.swift; sourceTree = SOURCE_ROOT; }; | ||
F8FDADD122B633D700EF23E3 /* SwipeButtonWithImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwipeButtonWithImage.swift; sourceTree = "<group>"; }; | ||
F8FDADD222B633D700EF23E3 /* SwipeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwipeViewController.swift; sourceTree = "<group>"; }; | ||
F8FDADD522B6388A00EF23E3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; | ||
F8FE8622200A5D2F00A9EAA9 /* TestViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestViewController.swift; sourceTree = "<group>"; }; | ||
/* End PBXFileReference section */ | ||
|
@@ -145,7 +145,7 @@ | |
607FACD31AFB9204008FA782 /* Supporting Files */, | ||
); | ||
name = "Example for SwipeViewController"; | ||
path = SwipeViewController; | ||
path = SwipeViewController_Example; | ||
sourceTree = "<group>"; | ||
}; | ||
607FACD31AFB9204008FA782 /* Supporting Files */ = { | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
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,26 @@ | ||
<?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>CFBundleDevelopmentRegion</key> | ||
<string>$(DEVELOPMENT_LANGUAGE)</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>$(CURRENT_PROJECT_VERSION)</string> | ||
<key>UILaunchStoryboardName</key> | ||
<string>LaunchScreen</string> | ||
<key>UISupportedInterfaceOrientations</key> | ||
<array/> | ||
</dict> | ||
</plist> |
File renamed without changes.
File renamed without changes.