Sha256: 7272f8c37edc67fe528af004803e52c0e2f72621328e3a5a0d54866976d8c34b

Contents?: true

Size: 1.06 KB

Versions: 6

Compression:

Stored size: 1.06 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'method_callbacks/version'

Gem::Specification.new do |spec|
  spec.name          = "method_callbacks"
  spec.version       = MethodCallbacks::VERSION
  spec.authors       = ["Morgan Showman"]
  spec.email         = ["morganshowman@gmail.com"]
  spec.summary       = %q{Add method callbacks to your classes}
  spec.description   = %q{Add after, around, and before callbacks to methods in your classes}
  spec.homepage      = "https://github.com/MorganShowman/method_callbacks"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.5"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "guard"
  spec.add_development_dependency "guard-rspec"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
method_callbacks-1.2.2 method_callbacks.gemspec
method_callbacks-1.2.1 method_callbacks.gemspec
method_callbacks-1.2.0 method_callbacks.gemspec
method_callbacks-1.1.1 method_callbacks.gemspec
method_callbacks-1.1.0 method_callbacks.gemspec
method_callbacks-1.0.0 method_callbacks.gemspec