forked from ddnexus/irt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirt.gemspec
35 lines (28 loc) · 1.2 KB
/
irt.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
35
name = File.basename( __FILE__, '.gemspec' )
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
require 'date'
require File.expand_path('../lib/irt/ruby_version.rb', __FILE__)
Gem::Specification.new do |s|
s.authors = ["Domizio Demichelis"]
s.email = '[email protected]'
s.homepage = 'http://github.com/ddnexus/irt'
s.summary = 'Interactive Ruby Tools - Very improved irb and Rails Console with a lot of cool features.'
s.description = 'If you use IRT in place of irb or Rails Console, you will have more tools that will make your life a lot easier.'
s.add_runtime_dependency('differ', [">= 0.1.1"])
s.add_runtime_dependency('dye', [">= 0.1.3"])
s.add_runtime_dependency('prompter', [">= 0.1.4"])
if IRT::RubyVersion >= '1.9.2'
s.add_runtime_dependency('bri', [">= 0.1.5"])
else
s.add_runtime_dependency('fastri', [">= 0.3.1.1"])
end
s.executables = ['irt', 'irt_irb', 'irt_rails2']
s.files = `git ls-files -z`.split("\0") - %w[irt-tutorial.pdf]
s.name = name
s.version = version
s.date = Date.today.to_s
s.required_rubygems_version = ">= 1.3.6"
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = ["README.markdown"]
s.require_paths = ["lib"]
end