Sha256: fb88dd300bdc8eb266e1ddd81d24b7452dac34c004ce3cc8a864a46fc5222ae6

Contents?: true

Size: 908 Bytes

Versions: 4

Compression:

Stored size: 908 Bytes

Contents

# -*- encoding: utf-8 -*-
lib_dir = File.expand_path('lib', File.dirname(__FILE__))
$LOAD_PATH.unshift(lib_dir) unless $LOAD_PATH.include?(lib_dir)
require 'method_decorators/version'

Gem::Specification.new do |gem|
  gem.authors       = ["Michael Fairley"]
  gem.email         = ["michaelfairley@gmail.com"]
  gem.description   = %q{Python's function decorators for Ruby}
  gem.summary       = %q{Python's function decorators for Ruby}
  gem.homepage      = "http://github.com/michaelfairley/method_decorators"

  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.name          = "method_decorators"
  gem.require_paths = ["lib"]
  gem.version       = MethodDecorators::VERSION

  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
method_decorators-0.9.6 method_decorators.gemspec
method_decorators-0.9.5 method_decorators.gemspec
method_decorators-0.9.4 method_decorators.gemspec
method_decorators-0.9.3 method_decorators.gemspec