Skip to content

Commit 87883d2

Browse files
authored
Fix a gem spec warning (#698)
2 parents 78a971d + f752388 commit 87883d2

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to AI agents when working with code in this reposito
44

55
## Overview
66

7-
Release Toolkit is a fastlane plugin implemented as a Ruby gem (`fastlane-plugin-wpmreleasetoolkit`) providing actions and helper utilities for release automation of Automattic's mobile apps. It standardizes the release process across multiple products (WordPress, Jetpack, WooCommerce, DayOne, PocketCats, Tumblr, Studio, …), repositories, and platforms (iOS, Android, macOS).
7+
Release Toolkit is a _fastlane_ plugin implemented as a Ruby gem (`fastlane-plugin-wpmreleasetoolkit`) providing actions and helper utilities for release automation of Automattic's mobile apps. It standardizes the release process across multiple products (WordPress, Jetpack, WooCommerce, Day One, Pocket Casts, Tumblr, Studio, …), repositories, and platforms (iOS, Android, macOS).
88

99
- **Language**: Ruby (version in `.ruby-version`, minimum in `fastlane-plugin-wpmreleasetoolkit.gemspec`)
1010
- **Framework**: Fastlane plugin
@@ -22,6 +22,7 @@ bundle exec rubocop # Run linter
2222
bundle exec rubocop -a # Auto-fix lint issues
2323
bundle exec yard doc # Generate docs, open in browser
2424
bundle exec yard stats --list-undoc # Show undocumented methods
25+
gem build # Build the gem (no arguments — auto-picks the gemspec)
2526
rake new_release # Start a new release (interactive)
2627
```
2728

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
fastlane-plugin-wpmreleasetoolkit (14.1.0)
5-
activesupport (>= 6.1.7.1)
5+
activesupport (>= 6.1.7.1, < 8)
66
buildkit (~> 1.5)
77
chroma (= 0.2.0)
88
diffy (~> 3.3)

fastlane-plugin-wpmreleasetoolkit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626
# since this would cause a circular dependency
2727

2828
# spec.add_dependency 'your-dependency', '~> 1.0.0'
29-
spec.add_dependency 'activesupport', '>= 6.1.7.1' # Required for fastlane to not crash when importing this plugin
29+
spec.add_dependency 'activesupport', '>= 6.1.7.1', '< 8' # Required for fastlane to not crash when importing this plugin
3030
spec.add_dependency 'buildkit', '~> 1.5'
3131
spec.add_dependency 'chroma', '0.2.0'
3232
spec.add_dependency 'diffy', '~> 3.3'

0 commit comments

Comments
 (0)