Sha256: 19b3c5cf07c46a1a70ca8c28abe31e52691bd770efbf3061d53ba66aeca85cfa

Contents?: true

Size: 1.23 KB

Versions: 4

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

require_relative 'lib/syntax_search/version'

Gem::Specification.new do |spec|
  spec.name          = "syntax_search"
  spec.version       = SyntaxErrorSearch::VERSION
  spec.authors       = ["schneems"]
  spec.email         = ["richard.schneeman+foo@gmail.com"]

  spec.summary       = %q{Find syntax errors in your source in a snap}
  spec.description   = %q{When you get an "unexpected end" in your syntax this gem helps you find it}
  spec.homepage      = "https://github.com/zombocom/syntax_search.git"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/zombocom/syntax_search.git"

  # 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('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "parser"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
syntax_search-0.1.3 syntax_search.gemspec
syntax_search-0.1.2 syntax_search.gemspec
syntax_search-0.1.1 syntax_search.gemspec
syntax_search-0.1.0 syntax_search.gemspec