Sha256: f309ab0cb6917da4752a074a8c78b1dcefae832edd0d297605610e835feffbd9
Contents?: true
Size: 883 Bytes
Versions: 23
Compression:
Stored size: 883 Bytes
Contents
# coding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__),"files.rb")) ### Specification for the new Gem Gem::Specification.new do |spec| spec.name = "mpatch" spec.version = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','') spec.authors = ["Adam Luzsi"] spec.email = ["adamluzsi@gmail.com"] spec.description = %q{This is a collection of my Ruby monkey patches for making easer to use the basic classes} spec.summary = %q{collection of methods for extend basic classes} spec.homepage = "https://github.com/adamluzsi/mpatch" spec.license = "MIT" spec.files = SpecFiles 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"] end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
mpatch-1.0.2 | mpatch.gemspec |
mpatch-1.0.1 | mpatch.gemspec |
mpatch-1.0.0 | mpatch.gemspec |