-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (54 loc) · 2.27 KB
/
Gemfile
File metadata and controls
56 lines (54 loc) · 2.27 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
source 'https://rubygems.org'
# Local workspace gems - flat in root (ace-* prefix)
gem 'ace-bundle', path: 'ace-bundle'
gem 'ace-assign', path: 'ace-assign'
gem 'ace-support-config', path: 'ace-support-config'
gem 'ace-support-cli', path: 'ace-support-cli'
gem 'ace-docs', path: 'ace-docs'
gem 'ace-git', path: 'ace-git'
gem 'ace-git-commit', path: 'ace-git-commit'
gem 'ace-git-secrets', path: 'ace-git-secrets'
gem 'ace-git-worktree', path: 'ace-git-worktree'
gem 'ace-lint', path: 'ace-lint'
gem 'ace-llm', path: 'ace-llm'
gem 'ace-support-models', path: 'ace-support-models'
gem 'ace-llm-providers-cli', path: 'ace-llm-providers-cli'
gem 'ace-support-nav', path: 'ace-support-nav'
gem 'ace-prompt-prep', path: 'ace-prompt-prep'
gem 'ace-review', path: 'ace-review'
gem 'ace-search', path: 'ace-search'
gem 'ace-support-core', path: 'ace-support-core'
gem 'ace-support-fs', path: 'ace-support-fs'
gem 'ace-support-mac-clipboard', path: 'ace-support-mac-clipboard'
gem 'ace-support-markdown', path: 'ace-support-markdown'
gem 'ace-b36ts', path: 'ace-b36ts'
gem 'ace-compressor', path: 'ace-compressor'
gem 'ace-demo', path: 'ace-demo'
gem 'ace-tmux', path: 'ace-tmux'
gem 'ace-overseer', path: 'ace-overseer'
gem 'ace-test-runner', path: 'ace-test-runner'
gem 'ace-sim', path: 'ace-sim'
gem 'ace-support-items', path: 'ace-support-items'
gem 'ace-idea', path: 'ace-idea'
gem 'ace-hitl', path: 'ace-hitl'
gem 'ace-retro', path: 'ace-retro'
gem 'ace-task', path: 'ace-task'
gem 'ace-handbook-integration-claude', path: 'ace-handbook-integration-claude'
gem 'ace-handbook-integration-codex', path: 'ace-handbook-integration-codex'
gem 'ace-handbook-integration-gemini', path: 'ace-handbook-integration-gemini'
gem 'ace-handbook-integration-opencode', path: 'ace-handbook-integration-opencode'
gem 'ace-handbook-integration-pi', path: 'ace-handbook-integration-pi'
# Shared dev/test tools for all gems
group :development, :test do
gem 'ace-handbook', path: 'ace-handbook'
gem 'ace-test', path: 'ace-test'
gem 'ace-support-test-helpers', path: 'ace-support-test-helpers'
gem 'ace-test-runner-e2e', path: 'ace-test-runner-e2e'
gem 'bundler', '~> 2.4'
gem 'minitest', '~> 5.20'
gem 'minitest-reporters', '~> 1.6'
gem 'rake', '~> 13.0'
gem 'simplecov', '~> 0.22'
gem 'standardrb'
gem 'webmock', '~> 3.19'
end