Sha256: f47638305847aa785fd862a2e9c7c745d01c98c85c720bc564d22ddcbd53e7b7
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true require_relative "lib/hot_module/version" Gem::Specification.new do |spec| spec.name = "hot_module" spec.version = HoTModuLe::VERSION spec.authors = ["Jared White"] spec.email = ["jared@whitefusion.studio"] spec.summary = "Parse, mutate, and render HTML Modules in Ruby." spec.homepage = "https://github.com/whitefusionhq/hot_module#readme" spec.license = "MIT" spec.required_ruby_version = ">= 3.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/whitefusionhq/hot_module" spec.metadata["changelog_uri"] = "https://github.com/whitefusionhq/hot_module/blob/main/CHANGELOG.md" spec.metadata["rubygems_mfa_required"] = "true" # 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.require_paths = ["lib"] spec.add_dependency "nokogiri", "~> 1.13" spec.add_development_dependency "hash_with_dot_access", "~> 1.2" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hot_module-1.0.0.alpha1 | hot_module.gemspec |