2019-05-03 01:33:56 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-01-01 02:38:08 -08:00
|
|
|
require File.expand_path('../lib/pry/version', __FILE__)
|
2011-06-09 13:15:39 +02:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2013-01-01 02:38:08 -08:00
|
|
|
s.name = "pry"
|
|
|
|
s.version = Pry::VERSION
|
2011-06-09 13:15:39 +02:00
|
|
|
|
2014-07-23 09:22:57 +01:00
|
|
|
s.required_ruby_version = '>= 1.9.3'
|
|
|
|
|
2018-10-28 19:32:04 +08:00
|
|
|
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'
|
|
|
|
]
|
2019-08-09 01:35:35 +08:00
|
|
|
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
|
2020-03-18 22:54:09 +05:30
|
|
|
s.homepage = "http://pry.github.io"
|
2014-05-30 15:46:16 +01:00
|
|
|
s.licenses = ['MIT']
|
2013-01-01 02:38:08 -08:00
|
|
|
|
|
|
|
s.executables = ["pry"]
|
2012-04-19 12:03:22 +12:00
|
|
|
s.require_paths = ["lib"]
|
2014-03-09 22:32:02 -07:00
|
|
|
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
|
2011-06-09 13:15:39 +02:00
|
|
|
|
2019-08-09 01:37:06 +08:00
|
|
|
s.add_dependency 'coderay', '~> 1.1'
|
2020-03-19 21:16:00 +08:00
|
|
|
s.add_dependency 'method_source', '~> 1.0'
|
2018-11-14 00:57:40 +11:00
|
|
|
|
|
|
|
s.metadata['changelog_uri'] = 'https://github.com/pry/pry/blob/master/CHANGELOG.md'
|
2019-02-08 13:41:59 -08:00
|
|
|
s.metadata['source_code_uri'] = 'https://github.com/pry/pry'
|
2018-11-14 00:57:40 +11:00
|
|
|
s.metadata['bug_tracker_uri'] = 'https://github.com/pry/pry/issues'
|
2011-06-09 13:15:39 +02:00
|
|
|
end
|