-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplain_errors.gemspec
More file actions
31 lines (24 loc) · 1.12 KB
/
Copy pathplain_errors.gemspec
File metadata and controls
31 lines (24 loc) · 1.12 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
Gem::Specification.new do |spec|
spec.name = "plain_errors"
spec.version = "0.1.0"
spec.authors = ["Anthony Panozzo"]
spec.email = ["panozzaj@gmail.com"]
spec.summary = "Minimal plaintext error reporting for Rails, optimized for LLMs and coding agents"
spec.description = "A Rails middleware inspired by better_errors that provides concise, token-efficient plaintext error output including error messages, stack traces, and code snippets."
spec.homepage = "https://github.com/panozzaj/plain_errors"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.files = Dir[
"lib/**/*",
"README.md",
"LICENSE",
"plain_errors.gemspec"
]
spec.require_paths = ["lib"]
spec.add_dependency "rack", ">= 2.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rack-test", "~> 2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/panozzaj/plain_errors"
spec.metadata["changelog_uri"] = "https://github.com/panozzaj/plain_errors/blob/main/CHANGELOG.md"
end