-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema_erd.gemspec
More file actions
27 lines (21 loc) · 1.05 KB
/
Copy pathschema_erd.gemspec
File metadata and controls
27 lines (21 loc) · 1.05 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
# frozen_string_literal: true
require_relative "lib/schema_erd/version"
Gem::Specification.new do |spec|
spec.name = "schema_erd"
spec.version = SchemaErd::VERSION
spec.authors = [ "Dreaming Tulpa" ]
spec.email = [ "hey@dreamingtulpa.com" ]
spec.summary = "An interactive ERD for your Rails schema"
spec.description = "Mount a fast, interactive entity-relationship diagram generated directly from db/schema.rb."
spec.homepage = "https://github.com/codegestalt/schema_erd"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir["CHANGELOG.md", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "schema_erd.gemspec", "lib/**/*", "test/**/*"]
spec.require_paths = [ "lib" ]
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rack", ">= 2.2"
spec.add_development_dependency "rake", "~> 13.0"
end