Sha256: ca3a6530d3669b480d67290ebc7d0c38829401e5df49bcbfce791ff1c32a3c11

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

require_relative 'lib/trace_eval/version'

Gem::Specification.new do |spec|
  spec.name          = 'trace_eval'
  spec.version       = TraceEval::VERSION
  spec.authors       = ['Frank J. Cameron']
  spec.email         = ['fjc@fastmail.net']

  spec.summary       = 'Evaluates the Ruby expression(s) in string and prints each executing line.'
  spec.homepage      = 'https://gitlab.com/fjc/trace_eval'
  spec.license       = 'MIT'
  spec.required_ruby_version = '>= 2.7.0'

  spec.metadata['homepage_uri'] = spec.homepage

  # 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__)) {
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  }

  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trace_eval-0.1.5 trace_eval.gemspec
trace_eval-0.1.4 trace_eval.gemspec