Sha256: 0c7c817a262c470613e65a110a269fd04724a8f006c04d7cee1be4c7fb6f40b3
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
begin require_relative "lib/irb/version" rescue LoadError # for Ruby core repository require_relative "version" end Gem::Specification.new do |spec| spec.name = "irb" spec.version = IRB::VERSION spec.authors = ["Keiju ISHITSUKA"] spec.email = ["keiju@ruby-lang.org"] spec.summary = %q{Interactive Ruby command-line tool for REPL (Read Eval Print Loop).} spec.description = %q{Interactive Ruby command-line tool for REPL (Read Eval Print Loop).} spec.homepage = "https://github.com/ruby/irb" spec.licenses = ["Ruby", "BSD-2-Clause"] spec.files = [ ".document", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "doc/irb/irb-tools.rd.ja", "doc/irb/irb.rd.ja", "exe/irb", "irb.gemspec", "man/irb.1", ] + Dir.glob("lib/**/*") spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = Gem::Requirement.new(">= 2.5") spec.add_dependency "reline", ">= 0.3.0" end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
scrapbook-0.3.2 | vendor/ruby/2.7.0/gems/irb-1.4.1/irb.gemspec |
scrapbook-0.3.1 | vendor/ruby/2.7.0/gems/irb-1.4.1/irb.gemspec |
irb-1.4.1 | irb.gemspec |
irb-1.4.0 | irb.gemspec |