Sha256: d46d2c67c0bc3e7ea54287f0f14adec2ed82d09f2e0eedb36f42b63e8290d3cb
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sexpistol/version' Gem::Specification.new do |spec| spec.name = 'sexpistol' spec.version = Sexpistol::VERSION spec.authors = ['Aaron Gough'] spec.email = ['aaron@aarongough.com'] spec.summary = 'Sexpistol is an easy-to-use S-Expression parser for Ruby. It is fast and has no dependencies.' spec.description = 'Sexpistol is an easy-to-use S-Expression parser for Ruby. It is fast and has no dependencies.' spec.homepage = 'https://github.com/aarongough/sexpistol' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |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.required_ruby_version = '>= 2.5.0' spec.add_development_dependency 'rspec', '~> 3.2' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'simplecov', '~> 0.17.1' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sexpistol-0.1.2 | sexpistol.gemspec |
sexpistol-0.1.1 | sexpistol.gemspec |
sexpistol-0.1.0 | sexpistol.gemspec |