Sha256: 6fb4f9c41e8aee56127ed7cdbb89f77b093fab6d35e719baa8947b6fae198c6b
Contents?: true
Size: 954 Bytes
Versions: 1
Compression:
Stored size: 954 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "much-plugin/version" Gem::Specification.new do |gem| gem.name = "much-plugin" gem.version = "0.2.0" #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.2.0 | much-plugin.gemspec |