Sha256: 8132e358eda477798307b800428eaba52041e6f7c205548000b9980591eef135

Contents?: true

Size: 1.61 KB

Versions: 3

Compression:

Stored size: 1.61 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 = "Extends the rails-mermaid_erd gem to generate mermaid ERDs in markdown " \
                 "for Ruby on Rails ActiveRecord Models"
  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

3 entries across 3 versions & 1 rubygems

Version Path
rails-mermaid_erd_markdown-0.4.0 rails-mermaid_erd_markdown.gemspec
rails-mermaid_erd_markdown-0.3.2 rails-mermaid_erd_markdown.gemspec
rails-mermaid_erd_markdown-0.3.1 rails-mermaid_erd_markdown.gemspec