-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpryx.gemspec
37 lines (33 loc) · 1.66 KB
/
pryx.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
26
27
28
29
30
31
32
33
34
35
36
37
name = 'pryx'
require File.expand_path("../lib/#{name}/version", __FILE__)
Gem::Specification.new do |s|
s.name = name
s.version = Pryx::VERSION
s.required_ruby_version = '>= 2.7'
s.authors = ['Billy.Zheng(zw963)']
s.email = ['[email protected]']
s.summary = 'pry extension tools!'
s.description = ''
s.homepage = 'http://github.com/zw963/pryx'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
s.files -= Dir['images/*.png']
s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
s.add_runtime_dependency 'awesome_print', '~>1.9'
s.add_runtime_dependency 'clipboard', '~>1.4'
s.add_runtime_dependency 'pry', '~>0.15'
# Following runtime dependencies and it's dependencies is dynamic loaded when pry! is running.
# So, following dependencies can't be required when running in a container.
s.add_runtime_dependency 'looksee', '~>5.0'
s.add_runtime_dependency 'pry-aa_ancestors', '~>0.0.1'
s.add_runtime_dependency 'pry-doc', '~>1.5'
s.add_runtime_dependency 'pry-hier', '~>0.1'
s.add_runtime_dependency 'pry-power_assert', '~>0.0.2'
s.add_runtime_dependency 'pry-rescue', '~>1.6'
s.add_runtime_dependency 'pry-stack_explorer', '~>0.6'
s.add_development_dependency 'm', '~>1.6'
s.add_development_dependency 'minitest', '5.15.0'
s.add_development_dependency 'ritual', '~>0.5'
s.metadata['rubygems_mfa_required'] = 'true'
end