forked from pry/pry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpry.gemspec
34 lines (29 loc) · 865 Bytes
/
pry.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
31
32
33
34
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pry/version', __FILE__)
Gem::Specification.new do |s|
s.name = "pry"
s.version = Pry::VERSION
s.required_ruby_version = '>= 1.9.3'
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 = "An IRB alternative and runtime developer console"
s.description = s.summary
s.homepage = "http://pryrepl.org"
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.0'
s.add_dependency 'method_source', '~> 0.9.0'
s.add_development_dependency 'bundler', '~> 1.0'
end