-
Notifications
You must be signed in to change notification settings - Fork 26
/
pry-doc.gemspec
30 lines (25 loc) · 1007 Bytes
/
pry-doc.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
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.11"
s.add_dependency 'pry', "~> 0.11"
s.add_development_dependency 'latest_ruby', '~> 3.3'
s.add_development_dependency 'rspec', '~> 3.5'
s.add_development_dependency 'rake', "~> 13.0"
end