Sha256: dd16d3372f9fa419d990d30bd7096d9c4d443976ad84ad8932faca911a49e149

Contents?: true

Size: 917 Bytes

Versions: 1

Compression:

Stored size: 917 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"]

  spec.add_dependency "str2duck"

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mpatch-1.3.0 mpatch.gemspec