2011-06-09 07:15:39 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
2011-08-22 00:33:39 -04:00
|
|
|
$:.unshift File.expand_path('../lib', __FILE__)
|
|
|
|
require 'pry/version'
|
2011-06-09 07:15:39 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2011-08-22 08:04:55 -04:00
|
|
|
s.name = 'pry'
|
2011-08-22 00:33:39 -04:00
|
|
|
s.version = Pry::VERSION
|
2011-06-09 07:15:39 -04:00
|
|
|
|
2011-08-22 08:04:55 -04:00
|
|
|
s.author = 'John Mair (banisterfiend)'
|
|
|
|
s.email = 'jrmair@gmail.com'
|
2011-06-09 07:15:39 -04:00
|
|
|
|
2011-08-22 08:04:55 -04:00
|
|
|
s.executables << 'pry'
|
|
|
|
s.homepage = 'http://banisterfiend.wordpress.com'
|
|
|
|
s.summary = 'an IRB alternative and runtime developer console'
|
|
|
|
s.description = 'an IRB alternative and runtime developer console'
|
2011-06-09 07:15:39 -04:00
|
|
|
|
2011-08-22 08:04:55 -04:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- test/*`.split("\n")
|
|
|
|
|
|
|
|
s.add_runtime_dependency('coderay', '>= 0.9.8')
|
|
|
|
s.add_runtime_dependency('ruby_parser', '>= 2.0.5')
|
|
|
|
s.add_runtime_dependency('slop', '~> 2.1.0')
|
|
|
|
|
|
|
|
s.add_development_dependency('bacon', '>= 1.1.0')
|
|
|
|
s.add_development_dependency('open4', '~> 1.0.1')
|
2011-06-09 07:15:39 -04:00
|
|
|
end
|