Sha256: e9b20a804085e8930fc6caa801d5724a8cbe6916f0c1be1699e8b1c8311970d1
Contents?: true
Size: 1.13 KB
Versions: 8
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'did_you_mean/version' Gem::Specification.new do |spec| spec.name = "did_you_mean" spec.version = DidYouMean::VERSION spec.authors = ["Yuki Nishijima"] spec.email = ["mail@yukinishijima.net"] spec.summary = '"Did you mean?" experience in Ruby' spec.description = '"did you mean?" experience in Ruby: the error message will tell you the right one when you misspelled something.' spec.homepage = "https://github.com/yuki24/did_you_mean" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.extensions = ["ext/did_you_mean/extconf.rb"] spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "interception" spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" spec.add_development_dependency "rake-compiler" spec.add_development_dependency "minitest" end
Version data entries
8 entries across 8 versions & 1 rubygems