Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Integrate CocoaPods dependency manager #9

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
17 changes: 17 additions & 0 deletions Flare.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]' }
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading