-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gemspec
21 lines (20 loc) · 908 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
$:.push File.dirname(__FILE__) + "/lib"
require 'ripl/readline/em/version'
Gem::Specification.new do |s|
s.name = "ripl-readline-em"
s.version = Ripl::Readline::Em::VERSION
s.authors = ["Patrick Mahoney"]
s.email = "pat@polycrystal.org"
s.homepage = "http://github.com/pmahoney/ripl-readline-em"
s.summary = "A ripl plugin to run readline within eventmachine"
s.description = "Run EventMachine code in a ripl shell asynchronously with readline editing and completion"
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency 'ripl', '>= 0.4.2'
s.add_dependency 'eventmachine'
s.add_dependency 'ffi'
s.files = Dir.glob(%w[lib/**/*.rb [A-Z]*.{txt,rdoc} examples/**/*.rb]) + %w{Rakefile .gemspec}
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
s.license = 'MIT'
end