-
Notifications
You must be signed in to change notification settings - Fork 21
/
annotaterb.gemspec
26 lines (23 loc) · 1.05 KB
/
annotaterb.gemspec
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
Gem::Specification.new do |spec|
spec.name = "annotaterb"
spec.version = File.read("VERSION").strip
spec.authors = ["Andrew W. Lee"]
spec.email = ["[email protected]"]
spec.summary = <<~SUMMARY.strip
A gem for generating annotations for Rails projects.
SUMMARY
spec.description = <<~DESCRIPTION.strip
Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.
DESCRIPTION
spec.homepage = "https://github.com/drwl/annotaterb"
spec.license = "BSD-2-Clause"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/drwl/annotaterb"
spec.metadata["changelog_uri"] = "https://github.com/drwl/annotaterb/blob/master/CHANGELOG.md"
spec.metadata["bug_tracker_uri"] = "https://github.com/drwl/annotaterb/issues"
spec.files = Dir["VERSION", "CHANGELOG.md", "LICENSE.txt", "README.md", "lib/**/*"]
spec.bindir = "exe"
spec.executables = Dir["exe/*"].map { |exe| File.basename(exe) }
spec.require_paths = ["lib"]
end