diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b7ef5e23..9c8f5f4b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] ## Added +- Integrate `CocoaPods` dependency manager. + - Added in Pull Request [#9](https://github.com/space-code/flare/pull/9). + - Add badges for `Swift Version Compatibility` and `Platform Compatibility` - - Added in Pull Request [#7](https://github.com/space-code/flare/pull/8). + - Added in Pull Request [#8](https://github.com/space-code/flare/pull/8). - Integrate `danger` - Added in Pull Request [#7](https://github.com/space-code/flare/pull/7). diff --git a/Flare.podspec b/Flare.podspec new file mode 100644 index 000000000..38d942812 --- /dev/null +++ b/Flare.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = 'Flare' + s.version = '2.1.0' + s.license = 'MIT' + s.summary = 'Flare is a framework written in Swift that makes it easy for you to work with in-app purchases and subscriptions.' + s.homepage = 'https://github.com/space-code/flare' + s.authors = { 'Nikita Vasilev' => 'nv3212@gmail.com' } + s.source = { :git => 'https://github.com/space-code/flare.git', :tag => s.version } + s.documentation_url = 'https://github.com/space-code/flare' + + s.ios.deployment_target = '13.0' + s.osx.deployment_target = '10.15' + s.tvos.deployment_target = '13.0' + s.watchos.deployment_target = '7.0' + + s.source_files = 'Sources/*.swift' +end \ No newline at end of file diff --git a/README.md b/README.md index 18bfb339a..d60a32ad5 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,14 @@ Check out [flare documentation](https://github.com/space-code/flare/blob/main/Do - Swift 5.7 ## Installation +### CocoaPods + +[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Flare into your Xcode project using CocoaPods, specify it in your `Podfile`: + +```ruby +pod 'Flare' +``` + ### Swift Package Manager The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It is in early development, but `flare` does support its use on supported platforms.