-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmethod_decorators.gemspec
More file actions
22 lines (19 loc) · 908 Bytes
/
method_decorators.gemspec
File metadata and controls
22 lines (19 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- 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