-
Notifications
You must be signed in to change notification settings - Fork 24
/
.gemspec
24 lines (23 loc) · 1.48 KB
/
.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
# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/ripl/version"
Gem::Specification.new do |s|
s.name = "ripl"
s.version = Ripl::VERSION
s.authors = ["Gabriel Horner"]
s.email = "[email protected]"
s.homepage = "http://github.com/cldwalker/ripl"
s.summary = "ruby interactive print loop - A light, modular alternative to irb and a shell framework"
s.description = "ripl is a light shell that encourages common middleware for shells i.e. rack for ruby shells. It is also a modular alternative to irb. Like irb, it loads ~/.irbrc, has autocompletion and keeps history in ~/.irb_history. Unlike irb, it is highly customizable via plugins and supports commands i.e. ripl-play. This customizability makes it easy to build custom shells (i.e. for a gem or application) and complex shells (i.e. for the web). Works on ruby 1.8.7 and greater."
s.required_rubygems_version = ">= 1.3.6"
s.executables = %w(ripl)
s.add_dependency 'bond', '~> 0.5.1'
s.add_development_dependency 'bacon', '>= 1.1.0'
s.add_development_dependency 'rr', '>= 1.0.4'
s.add_development_dependency 'bacon-bits'
s.add_development_dependency 'bacon-rr'
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc,md} ext/**/*.{rb,c}]) + %w{Rakefile .gemspec .travis.yml}
s.files += Dir.glob(['man/*', '*.gemspec']) + %w{test/.riplrc}
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
s.license = 'MIT'
end