much-plugin.gemspec in much-plugin-0.1.0 vs much-plugin.gemspec in much-plugin-0.1.1
- old
+ new
@@ -1,23 +1,23 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require "much-plugin/version"
+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.description = %q{An API to ensure mixin included logic (the "plugin") only runs once.}
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.15"])
+ gem.add_development_dependency("assert", ["~> 2.16.1"])
end