Sha256: def5e42a8017183a2866fcdf0e86d5770e78cb7752ea8c5ad729bd2525083f29
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
# -*- encoding: utf-8 -*- require 'rubygems' unless Object.const_defined?(:Gem) require File.dirname(__FILE__) + "/lib/bond/version" Gem::Specification.new do |s| s.name = "bond" s.version = Bond::VERSION s.platform = ENV['GEM_PLATFORM'] if ENV['GEM_PLATFORM'] s.authors = ["Gabriel Horner"] s.email = "gabriel.horner@gmail.com" s.homepage = "http://tagaholic.me/bond/" s.summary = "Mission: Easy custom autocompletion for arguments, methods and beyond. Accomplished for irb and any other readline-like console environments." s.description = "Bond is on a mission to improve autocompletion in ruby, especially for irb/ripl. Aside from doing everything irb's can do and fixing its quirks, Bond can autocomplete argument(s) to methods, uniquely completing per module, per method and per argument. Bond brings ruby autocompletion closer to bash/zsh as it provides a configuration system and a DSL for creating custom completions and completion rules. With this configuration system, users can customize their autocompletions and share it with others. Bond can also load completions that ship with gems. Bond is able to offer more than irb's completion since it uses the full line of input when completing as opposed to irb's last-word approach." s.required_rubygems_version = ">= 1.3.6" s.has_rdoc = 'yard' s.rdoc_options = ['--title', "Bond #{Bond::VERSION} Documentation"] s.add_development_dependency 'bacon', '>= 1.1.0' s.add_development_dependency 'mocha', '>= 0.9.8' s.add_development_dependency 'mocha-on-bacon' s.add_development_dependency 'bacon-bits' s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} **/deps.rip]) + %w{Rakefile .gemspec .travis.yml} if ENV['GEM_PLATFORM'] != 'java' s.files += Dir.glob("ext/**/*.{rb,c}") s.extensions = ["ext/readline_line_buffer/extconf.rb"] end s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"] s.license = 'MIT' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bond-0.4.2 | .gemspec |
bond-0.4.2-java | .gemspec |