pry/pry.gemspec

44 lines
1.3 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
require File.expand_path('lib/pry/version', __dir__)
Gem::Specification.new do |s|
s.name = "pry"
s.version = Pry::VERSION
2022-03-09 22:01:20 +00:00
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
2020-03-18 17:24:09 +00:00
s.homepage = "http://pry.github.io"
s.licenses = ['MIT']
s.executables = ["pry"]
s.require_paths = ["lib"]
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
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