Sha256: 2523a17d57d7dfc9e4a4ec2531a7edec7eba2c9eb9652808c79e4785c23ee82e
Contents?: true
Size: 738 Bytes
Versions: 3
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "debug_socket/version" Gem::Specification.new do |spec| spec.name = "debug_socket" spec.version = DebugSocket::VERSION spec.authors = ["Andrew Lazarus"] spec.email = ["lazarus@squareup.com"] spec.summary = "Debug Socket for running ruby processes" spec.homepage = "https://github.com/square/debug_socket" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
debug_socket-0.1.8 | debug_socket.gemspec |
debug_socket-0.1.7 | debug_socket.gemspec |
debug_socket-0.1.6 | debug_socket.gemspec |