Sha256: 7c9114f12524c8bfd3ea9a02be0841f98d4e6e74a39ff1985e882f0cdcb93b7c
Contents?: true
Size: 917 Bytes
Versions: 4
Compression:
Stored size: 917 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'after_do/version' Gem::Specification.new do |spec| spec.name = "after_do" spec.version = AfterDo::VERSION spec.authors = ["Tobias Pfeiffer"] spec.email = ["pragtob@gmail.com"] spec.description = %q{after_do is a gem that let's you execute a block of your choice after or before a specific method is called on a class. This is inspired by Aspect Oriented Programming and should be used to fight cross-cutting concerns.} spec.summary = %q{after_do allows you to add simple after/before hooks to methods} spec.homepage = "https://github.com/PragTob/after_do" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
after_do-0.4.0 | after_do.gemspec |
after_do-0.3.1 | after_do.gemspec |
after_do-0.3.0 | after_do.gemspec |
after_do-0.2.3 | after_do.gemspec |