File: pry.gemspec

package info (click to toggle)
pry 0.15.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: ruby: 21,692; sh: 17; makefile: 11
file content (43 lines) | stat: -rw-r--r-- 1,306 bytes parent folder | download
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
38
39
40
41
42
43
# frozen_string_literal: true

require File.expand_path('lib/pry/version', __dir__)

Gem::Specification.new do |s|
  s.name    = "pry"
  s.version = Pry::VERSION

  s.required_ruby_version = '>= 2.0'

  s.authors = [
    'John Mair (banisterfiend)',
    'Conrad Irwin',
    'Ryan Fitzgerald',
    'Kyrylo Silin'
  ]
  s.email = [
    'jrmair@gmail.com',
    'conrad.irwin@gmail.com',
    'rwfitzge@gmail.com',
    'silin@kyrylo.org'
  ]
  s.summary = 'A runtime developer console and IRB alternative with powerful ' \
              'introspection capabilities.'
  s.description = <<DESC
Pry is a runtime developer console and IRB alternative with powerful
introspection capabilities. Pry aims to be more than an IRB replacement. It is
an attempt to bring REPL driven programming to the Ruby language.
DESC
  s.homepage = "http://pry.github.io"
  s.licenses = ['MIT']

  s.executables   = ["pry"]
  s.require_paths = ["lib"]
  s.files         = Dir["{bin,lib}/**/*"] + Dir["*.md"] + Dir["LICENSE"]

  s.add_dependency 'coderay', '~> 1.1'
  s.add_dependency 'method_source', '~> 1.0'

  s.metadata['changelog_uri'] = 'https://github.com/pry/pry/blob/master/CHANGELOG.md'
  s.metadata['source_code_uri'] = 'https://github.com/pry/pry'
  s.metadata['bug_tracker_uri'] = 'https://github.com/pry/pry/issues'
end