8000 merge main back to dev branch by sbenedicadb · Pull Request #47 · adobe/aepsdk-rulesengine-ios · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

merge main back to dev branch #47

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

Merged
merged 3 commits into from
Oct 1, 2021
Merged
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
7 changes: 2 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@ import PackageDescription
let package = Package(
name: "AEPRulesEngine",
products: [
.library(name: "AEPRulesEngine", targets: ["AEPRulesEngine"]),
.library(name: "AEPRulesEngineDynamic", type: .dynamic, targets: ["AEPRulesEngine"]),
.library(name: "AEPRulesEngineStatic", type: .static, targets: ["AEPRulesEngine"]),
.library(name: "AEPRulesEngine", targets: ["AEPRulesEngine"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
.target(name: "AEPRulesEngine", dependencies: []),
.testTarget(name: "AEPRulesEngineTests", dependencies: ["AEPRulesEngine"]),
.target(name: "AEPRulesEngine", dependencies: [])
]
)
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# AEPRulesEngine

<!--
on [![Cocoapods](https://img.shields.io/cocoapods/v/AEPRulesEngine.svg?color=orange&label=AEPCore&logo=apple&logoColor=white)](https://cocoapods.org/pods/AEPRulesEngine)
-->
[![Cocoapods](https://img.shields.io/cocoapods/v/AEPRulesEngine.svg?color=orange&label=AEPRulesEngine&logo=apple&logoColor=white)](https://cocoapods.org/pods/AEPRulesEngine)
[![SPM](https://img.shields.io/badge/SPM-Supported-orange.svg?logo=apple&logoColor=white)](https://swift.org/package-manager/)
[![CI](https://github.com/adobe/aepsdk-rulesengine-ios/workflows/CI/badge.svg)](https://github.com/adobe/aepsdk-rulesengine-ios/actions)
[![Build](https://github.com/adobe/aepsdk-rulesengine-ios/actions/workflows/build.yml/badge.svg)](https://github.com/adobe/aepsdk-rulesengine-ios/actions/workflows/build.yml)
[![Code Coverage](https://img.shields.io/codecov/c/github/adobe/aepsdk-rulesengine-ios/main.svg?logo=codecov)](https://codecov.io/gh/adobe/aepsdk-rulesengine-ios/branch/main)
[![GitHub](https://img.shields.io/github/license/adobe/aepsdk-rulesengine-ios)](https://github.com/adobe/aepsdk-rulesengine-ios/blob/main/LICENSE)

Expand All @@ -25,7 +23,7 @@ A simple, generic, extensible Rules Engine in Swift.
use_frameworks!

target 'YOUR_TARGET_NAME' do
pod 'AEPRulesEngine', :git => 'https://github.com/adobe/aepsdk-rulesengine-ios.git', :branch => 'main'
pod 'AEPRulesEngine'
end
```

Expand All @@ -43,19 +41,13 @@ To add the AEPRulesEngine package to your application, from the Xcode menu selec

Enter the URL for the AEPRulesEngine package repository: `https://github.com/adobe/aepsdk-rulesengine-ios.git`.

When prompted, make sure you change the branch to `main`.

There are three options for selecting your dependencies as identified by the *suffix* of the library name:

- "Dynamic" - the library will be linked dynamically
- "Static" - the library will be linked statically
- *(none)* - (default) SPM will determine whether the library will be linked dynamically or statically
When prompted, input a specific version or a range of versions.

Alternatively, if your project has a `Package.swift` file, you can add AEPRulesEngine directly to your dependencies:

```
dependencies: [
.package(url: "https://github.com/adobe/aepsdk-rulesengine-ios.git", .branch("main"))
.package(url: "https://github.com/adobe/aepsdk-rulesengine-ios.git", .upToNextMajor(from: "1.0.1"))
]
```

Expand Down
0