-
Notifications
You must be signed in to change notification settings - Fork 14
/
looksee.gemspec
31 lines (27 loc) · 959 Bytes
/
looksee.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
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'looksee/version'
Gem::Specification.new do |gem|
gem.name = 'looksee'
gem.version = Looksee::VERSION
gem.authors = ["George Ogata"]
gem.email = ["george.ogata@gmail.com"]
gem.license = 'MIT'
gem.date = Time.now.strftime('%Y-%m-%d')
gem.summary = "Supercharged method introspection in IRB."
gem.homepage = 'http://github.com/oggy/looksee'
if RUBY_PLATFORM == 'java'
gem.platform = Gem::Platform::CURRENT
else
gem.extensions = ["ext/extconf.rb"]
end
gem.extra_rdoc_files = ['CHANGELOG', 'LICENSE', 'README.markdown']
gem.files = Dir['lib/**/*', 'ext/**/{*.c,*.h,*.rb}', 'CHANGELOG', 'LICENSE', 'Rakefile', 'README.markdown']
gem.test_files = Dir["spec/**/*.rb"]
gem.require_path = 'lib'
gem.specification_version = 3
if RUBY_PLATFORM == 'java'
gem.required_ruby_version = ['>= 2.5']
else
gem.required_ruby_version = ['>= 2.7']
end
end