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