Sha256: ed63c2233624f02d53afb52dc451a00338361c76027e96c9db5d03e3b906887e
Contents?: true
Size: 1.18 KB
Versions: 6
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true require_relative "lib/erb/formatter" Gem::Specification.new do |spec| spec.name = "erb-formatter" spec.version = ERB::Formatter::VERSION spec.authors = ["Elia Schito"] spec.email = ["elia@schito.me"] spec.summary = "Format ERB files with speed and precision." spec.homepage = "https://github.com/nebulab/erb-formatter#readme" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/nebulab/erb-formatter" spec.metadata["changelog_uri"] = "https://github.com/nebulab/erb-formatter/releases" # 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").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"] spec.add_development_dependency "rufo" end
Version data entries
6 entries across 6 versions & 1 rubygems