Sha256: c07180aa54dc570dd977072470492c020b1d3523683439a16d9bed84abb8d949
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mabbre/version" Gem::Specification.new do |spec| spec.name = "mabbre" spec.version = MAbbre::VERSION spec.authors = ["Gabriel de Oliveira"] spec.email = ["deoliveira.gab@gmail.com"] spec.summary = "Enable shortened method names on classes and modules." spec.description = <<-EOS.strip.gsub(/\n/, "").gsub(/\s{2,}/, " ") MAbbre allows a group of methods in a Class or a Module to be accessed using an abbreviated form. These methods can be defined anywhere within a hierarchy of inclusion and/or inheritance. EOS spec.homepage = "https://github.com/gdeoliveira/mabbre" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.test_files = spec.files.grep(/^(test|spec|features)\//) spec.require_paths = ["lib"] spec.add_dependency "mtrack", "~> 1.1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mabbre-0.0.3 | mabbre.gemspec |
mabbre-0.0.2 | mabbre.gemspec |