-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpry-doc.gemspec
More file actions
34 lines (29 loc) · 1.14 KB
/
pry-doc.gemspec
File metadata and controls
34 lines (29 loc) · 1.14 KB
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
require './lib/pry-doc/version.rb'
Gem::Specification.new do |s|
s.name = "pry-doc"
s.version = PryDoc::VERSION
s.authors = ["John Mair (banisterfiend)"]
s.email = ["[email protected]"]
s.summary = 'Provides YARD and extended documentation support for Pry'
s.description = <<DESCR
Pry Doc is a Pry REPL plugin. It provides extended documentation support for the
REPL by means of improving the `show-doc` and `show-source` commands. With help
of the plugin the commands are be able to display the source code and the docs
of Ruby methods and classes implemented in C.
documentation
DESCR
s.homepage = "https://github.com/pry/pry-doc"
s.license = 'MIT'
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.required_ruby_version = '>= 2.0'
s.add_dependency 'yard', "~> 0.9.21"
s.add_dependency 'pry', "~> 0.11"
s.add_development_dependency 'latest_ruby', '~> 3.5'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'rake', "~> 13.0"
s.add_development_dependency 'bigdecimal'
s.add_development_dependency 'logger'
s.add_development_dependency 'ostruct'
s.add_development_dependency 'irb'
end