-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebugging.gemspec
More file actions
27 lines (21 loc) · 1002 Bytes
/
Copy pathdebugging.gemspec
File metadata and controls
27 lines (21 loc) · 1002 Bytes
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
26
27
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/debugging/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "debugging"
gem.version = Debugging::VERSION
gem.summary = 'Print debugging helpers'
gem.description = 'Utilities for better "print debugging"'
gem.license = "MIT"
gem.authors = ["Jan Lelis"]
gem.email = ["hi@ruby.consulting"]
gem.homepage = "https://github.com/janlelis/debugging"
gem.files = Dir['{**/}{.*,*}'].select { |path| File.file?(path) && path !~ /pkg/ }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.metadata = { "rubygems_mfa_required" => "true" }
gem.required_ruby_version = '>= 2.0'
gem.add_dependency 'paint', '>= 0.9', '< 3.0'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rspec', '~> 3.13'
end