Sha256: c40f0ed9d883bb684995e38a8ecace1a3228a4cd8704712b12188938788c17b0

Contents?: true

Size: 1.46 KB

Versions: 7

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true

require_relative "lib/hitomalu_formatter/version"
require_relative "lib/hitomalu_formatter/formatter"

Gem::Specification.new do |spec|
  spec.name = "hitomalu_formatter"
  spec.version = HitomaluFormatter::VERSION
  spec.authors = ["t-hazawa"]
  spec.email = []

  spec.summary = "Format HTML string."
  spec.homepage = "https://t-hazawa.hatenablog.com/"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["allowed_push_host"] = "https://rubygems.org"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/t-hazawa/hitomalu_formatter"
  spec.metadata["changelog_uri"] = "https://github.com/t-hazawa/hitomalu_formatter/master/CHANGELOG.md"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Uncomment to register a new dependency of your gem
  # spec.add_dependency "example-gem", "~> 1.0"

  # For more information and examples about making a new gem, check out our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hitomalu_formatter-0.1.6 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.5 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.4 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.3 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.2 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.1 hitomalu_formatter.gemspec
hitomalu_formatter-0.1.0 hitomalu_formatter.gemspec