-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from faberNovel/feature/spm
Make ADFormController available through SPM
- Loading branch information
Showing
20 changed files
with
348 additions
and
237 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
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
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
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 @@ | ||
3.3.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'ADFormController' | ||
spec.version = '6.0.6' | ||
spec.version = '6.1.0' | ||
spec.authors = 'Applidium' | ||
spec.license = 'none' | ||
spec.homepage = 'http://applidium.com' | ||
spec.summary = 'Applidium\'s form controller' | ||
spec.platform = 'ios', '10.0' | ||
spec.platform = 'ios', '13.0' | ||
spec.license = { :type => 'Commercial', :text => 'Created and licensed by Applidium. Copyright 2016 Applidium. All rights reserved.' } | ||
spec.source = { :git => 'https://github.com/faberNovel/ADFormController.git', :tag => "v#{spec.version}" } | ||
spec.source_files = 'Modules/ADFormController/Classes/*.{h,m,swift}' | ||
spec.resource_bundle = {'ADFormController' => 'Modules/ADFormController/Ressources/InputAccessoryView.xcassets'} | ||
spec.framework = 'Foundation', 'UIKit' | ||
spec.requires_arc = true | ||
spec.dependency 'ADKeyboardManager', '~> 6.0' | ||
spec.dependency 'ADKeyboardManager', '~> 7.0' | ||
spec.swift_version = '5.0' | ||
end |
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
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
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
source 'https://rubygems.org' | ||
|
||
ruby '2.6.5' | ||
ruby '3.3.0' | ||
|
||
gem 'cocoapods', '1.10.0' | ||
gem 'CFPropertyList', '2.3.6' | ||
gem 'fastlane' | ||
gem 'cocoapods', '~> 1.15' | ||
gem 'CFPropertyList', '~> 3.0' | ||
gem 'fastlane', '~> 2.220' | ||
|
||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') | ||
eval_gemfile(plugins_path) if File.exist?(plugins_path) |
Oops, something went wrong.