Gravatar-SDK-iOS icon indicating copy to clipboard operation
Gravatar-SDK-iOS copied to clipboard

Gravatar SDK is a Swift library that allows you to integrate Gravatar features into your own iOS applications.

Results 21 Gravatar-SDK-iOS issues
Sort by recently updated
recently updated
newest added

# WIP ### Description This is a proof of concept of an implementation of Open API. The goals of this implementation are: - To minimise external dependencies. - To avoid...

Closes # ### Description This adds `SwiftLint` as a Build Tool plugin, and a basic configuration that enables only one rule: `force_unwrapping`. ### There's a problem This doesn't currently play...

Our avatar has 1pt border by default. I think this should be optional. Let's give others chance to set the `borderWidth` to whatever they want.

Closes #191 ![CleanShot 2024-04-12 at 15 55 24@2x](https://github.com/Automattic/Gravatar-SDK-iOS/assets/9772967/58ec8bfa-56ce-4dc5-80ad-484e695dd976) ### Description ### Testing Steps

Closes # ### Description This PR is created to test the release automation. ### Testing Steps CI green

Now that we don't have test specs in podspecs we can add TestHelpers target to share code between GravatarTests and GravatarUITests. We only need to update "Package.swift".

We can use `-strict-concurrency=complete` flag to check the overall implementation: ```swift .target( name: "Gravatar", swiftSettings: [ .unsafeFlags(["-strict-concurrency=complete"]) ] ), ``` or also ```swift .target( name: "Gravatar", swiftSettings: [ .enableUpcomingFeature("StrictConcurrency") ]...