-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherd_map.gemspec
24 lines (20 loc) · 1013 Bytes
/
erd_map.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
require_relative "lib/erd_map/version"
Gem::Specification.new do |spec|
spec.name = "erd_map"
spec.version = ErdMap::VERSION
spec.authors = [ "makicamel" ]
spec.homepage = "https://github.com/makicamel/erd_map"
spec.summary = "An ERD map viewer as a Rails engine."
spec.description = "ErdMap visualizes key models and associations in Rails applications, helping you understand their architecture by starting with the most important models and allowing zoom-in exploration."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/makicamel/erd_map/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails"
spec.add_dependency "pycall"
spec.add_dependency "fiddle"
end