Sha256: 6f626c5c59121cc4a964394dbc7d9fd5bb1548831773a8ed046723c83c7e2e66
Contents?: true
Size: 980 Bytes
Versions: 1
Compression:
Stored size: 980 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require File.expand_path("../lib/much-plugin/version", __FILE__) Gem::Specification.new do |gem| gem.name = "much-plugin" gem.version = MuchPlugin::VERSION gem.authors = ["Kelly Redding", "Collin Redding"] gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"] gem.summary = %q{An API to ensure mixin included logic (the "plugin") only runs once.} gem.description = %q{An API to ensure mixin included logic (the "plugin") only runs once.} gem.homepage = "http://github.com/redding/much-plugin" gem.license = 'MIT' gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency("assert", ["~> 2.16.1"]) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
much-plugin-0.1.1 | much-plugin.gemspec |