-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheager_beaver.gemspec
23 lines (20 loc) · 1.24 KB
/
eager_beaver.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/eager_beaver/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Kevin Burleigh"]
gem.email = ["[email protected]"]
gem.description = %q{Facilitates method_missing, respond_to_missing?, and method-generation activities}
gem.summary = %q{Facilitates method_missing, respond_to_missing?, and method-generation activities
by providing a simple interface for adding method generators. All related
activities, such as registering with #method_missing and #respond_to_missing?
are handled automatically. Facilitates method name pattern-specific method
generation as well. Generated methods are added to the missing method receiver.}
gem.homepage = "http://github.com/kevinburleigh75/eager_beaver"
gem.add_development_dependency "rspec", ["~>2.13.0"]
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 = "eager_beaver"
gem.require_paths = ["lib"]
gem.version = EagerBeaver::VERSION
end