-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gemspec
19 lines (18 loc) · 938 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/ripl/irb"
Gem::Specification.new do |s|
s.name = "ripl-irb"
s.version = Ripl::Irb::VERSION
s.authors = ["Gabriel Horner"]
s.email = "[email protected]"
s.homepage = "http://github.com/cldwalker/ripl-irb"
s.summary = "A ripl plugin to smooth the transition from irb"
s.description = "A ripl plugin that smooths the transition from irb by mocking out IRB. Safely captures all IRB calls and points to ripl equivalents for irb's commands and config options."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = 'tagaholic'
s.add_dependency 'ripl', '>= 0.2.5'
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
s.license = 'MIT'
end