-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherdb.gemspec
27 lines (26 loc) · 1.01 KB
/
erdb.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
27
require_relative "lib/erdb/version"
Gem::Specification.new do |s|
s.name = "erdb"
s.version = ERDB::VERSION
s.authors = ["Wai Yan Phyo"]
s.email = "[email protected]"
s.required_ruby_version = ">= 2.7.0"
s.description = "ERDB is a Ruby Gem for generation Entity-Relationship Diagrams (ERD)."
s.summary = "ERDB is a Ruby Gem for generation Entity-Relationship Diagrams (ERD)."
s.homepage = "https://github.com/oyhpnayiaw/erdb"
s.bindir = "bin"
s.executables = ["erdb"]
s.license = "MIT"
s.metadata = {
"source_code_uri" => "https://github.com/oyhpnayiaw/erdb",
"rubygems_mfa_required" => "true"
}
s.files = Dir["{bin,lib}/**/*", "LICENSE.txt", "README.md", "CHANGES.md"]
s.add_runtime_dependency "activerecord", "~> 7.0"
s.add_runtime_dependency "clipboard", "~> 1.3"
s.add_runtime_dependency "sqlite3", "~> 1.6"
s.add_runtime_dependency "thor", "~> 1.2"
s.add_runtime_dependency "watir", "~> 7.2"
# for windows
s.add_runtime_dependency "ffi", "~> 1.15" if Gem.win_platform?
end