Sha256: ad44ce41a9295578c56d40f9a91582e025d9b42658536eb8c442e549b0e76dd1
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# encoding: UTF-8 # frozen_string_literal: true require File.expand_path("../lib/method-not-implemented", __FILE__) Gem::Specification.new do |s| s.name = "method-not-implemented" s.version = MethodNotImplemented::VERSION s.author = "Yaroslav Konoplov" s.email = "eahome00@gmail.com" s.summary = "Tweaks every Ruby object with `method_not_implemented`." s.description = "This gem adds method `method_not_implemented` to every Ruby object. " \ "Invoking `method_not_implemented` in abstract method " \ "raises an exception if it hasn't been implemented." s.homepage = "https://github.com/yivo/method-not-implemented" s.license = "MIT" s.files = `git ls-files -z`.split("\x0") s.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0") s.require_paths = ["lib"] s.add_development_dependency "bundler", "~> 1.7" s.add_development_dependency "rake", "~> 12.0" s.add_development_dependency "test-unit", "~> 3.2" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
method-not-implemented-1.0.1 | method-not-implemented.gemspec |