-
Notifications
You must be signed in to change notification settings - Fork 12
/
break.gemspec
25 lines (19 loc) · 881 Bytes
/
break.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "break/version"
Gem::Specification.new do |spec|
spec.name = "break"
spec.version = Break::VERSION
spec.authors = ["Genadi Samokovarov"]
spec.email = ["[email protected]"]
spec.summary = "Lightweight Ruby debugger"
spec.description = "Lightweight Ruby debugger written in plain Ruby using the TracePoint API"
spec.homepage = "https://github.com/gsamokovarov/break"
spec.license = "MIT"
spec.files = Dir["CHANGELOG.md", "Rakefile", "README.md", "LICENSE.txt", "lib/**/*"]
spec.required_ruby_version = ">= 2.5.0"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "minitest", "~> 5.11"
spec.add_development_dependency "rake", ">= 12.3.3"
end