-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathace-git.gemspec
More file actions
56 lines (46 loc) · 2.02 KB
/
Copy pathace-git.gemspec
File metadata and controls
56 lines (46 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
require_relative "lib/ace/git/version"
Gem::Specification.new do |spec|
spec.name = "ace-git"
spec.version = Ace::Git::VERSION
spec.authors = ["Michal Czyz"]
spec.email = ["mc@cs3b.com"]
spec.summary = "Git workflows and context commands for developers and AI agents"
spec.description = "ace-git gives developers and coding agents focused git context commands and guided " \
"workflows for rebases, pull requests, and commit reorganization, with smart diff " \
"output and Git 2.23+ guardrails."
spec.homepage = "https://github.com/cs3b/ace/tree/main/ace-git"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
# RubyGems defaults unset gemspec dates to 1980-01-02, so set an explicit release date.
# rubocop:disable Gemspec/DeprecatedAttributeAssignment
spec.date = Time.now.utc.strftime("%Y-%m-%d")
# rubocop:enable Gemspec/DeprecatedAttributeAssignment
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/cs3b/ace/tree/main/ace-git/"
spec.metadata["changelog_uri"] = "https://github.com/cs3b/ace/blob/main/ace-git/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
# Include lib, exe, handbook (workflows and templates), and config examples
spec.files = Dir.glob(%w[
lib/**/*
exe/*
handbook/**/*
docs/**/*
.ace-defaults/**/*
*.md
LICENSE
Rakefile
]).select { |f| File.file?(f) }
spec.bindir = "exe"
spec.executables = ["ace-git"]
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "ace-support-config", "~> 0.18"
spec.add_dependency "ace-support-core", "~> 0.31"
spec.add_dependency "ace-support-cli", "~> 0.6"
# Development dependencies
spec.add_development_dependency "ace-support-test-helpers", "~> 0.14"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
end