Sha256: 546a544403a01b10ce12892f237ec2c8b4e6be72b663582d55e50f7843577c08

Contents?: true

Size: 1.64 KB

Versions: 1

Compression:

Stored size: 1.64 KB

Contents

# frozen_string_literal: true

require_relative "lib/rails-mermaid_erd_markdown/version"

Gem::Specification.new do |spec|
  spec.name = "rails-mermaid_erd_markdown"
  spec.version = MermaidErdMarkdown::VERSION
  spec.authors = ["humzahkiani"]
  spec.email = ["89326566+humzahkiani@users.noreply.github.com"]

  spec.summary = "This is a rails gem that extends the rails-mermaid_erd gem to generate a mermaid ERD for Rails " \
                 "Models in markdown directly in source code."
  spec.homepage = "https://github.com/humzahkiani/rails-mermaid_erd_markdown"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/humzahkiani/rails-mermaid_erd_markdown"
  spec.metadata["changelog_uri"] = "https://github.com/humzahkiani/rails-mermaid_erd_markdown/blob/main/CHANGELOG.md"
  spec.metadata["github_repo"] = "ssh://github.com/humzahkiani/rails-mermaid_erd_markdown"
  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0")
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Runtime Dependencies
  spec.add_dependency "rails", ">= 5.2"
  spec.add_dependency "rails-mermaid_erd", "~> 0.4.2"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
  spec.metadata["rubygems_mfa_required"] = "true"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-mermaid_erd_markdown-0.3.0 rails-mermaid_erd_markdown.gemspec