Skip to content
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
21 changes: 9 additions & 12 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,17 @@

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

## Build & Lint
## Build

```bash
# Validate podspec
pod spec lint GADManager.podspec

# Build via SPM
swift build

# CocoaPods install (in consumer projects)
pod install
```

## Release Process

1. Bump version in `GADManager.podspec` (`s.version`)
1. Bump version in `Package.swift` (if applicable) and update version references
2. Commit: `bump: release a.b.c`
3. Tag: `git tag a.b.c && git push origin a.b.c`
4. Push podspec: `pod trunk push GADManager.podspec`

## Architecture

Expand Down Expand Up @@ -53,8 +45,13 @@ GADManager is a generic Swift library (`GADManager<E>`) that wraps Google Mobile

## Distribution

- **CocoaPods**: `pod 'GADManager'` — depends on `Google-Mobile-Ads-SDK` (static framework)
- **SPM**: `Package.swift` — depends on `swift-package-manager-google-mobile-ads` ≥ 12.6.0
**SPM only** (CocoaPods removed — CocoaPods is deprecated):

```swift
.package(url: "https://github.com/2sem/GADManager.git", from: "1.3.8")
```

Depends on `swift-package-manager-google-mobile-ads` ≥ 12.6.0.

## CI

Expand Down
156 changes: 0 additions & 156 deletions GADManager.podspec

This file was deleted.

11 changes: 0 additions & 11 deletions Podfile

This file was deleted.

Loading