-
Notifications
You must be signed in to change notification settings - Fork 21
/
casting.gemspec
30 lines (27 loc) · 1.05 KB
/
casting.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require File.expand_path("../lib/casting/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jim Gay"]
gem.email = ["[email protected]"]
gem.description = "Casting assists in method delegation which preserves the binding of 'self' to the object receiving a message.
This allows you to define behavior and apply it to an object temporarily without extending the object's super class structure."
gem.summary = "Proper method delegation."
gem.homepage = "http://github.com/saturnflyer/casting"
gem.files = ["lib/casting.rb",
"lib/casting/client.rb",
"lib/casting/context.rb",
"lib/casting/delegation.rb",
"lib/casting/enum.rb",
"lib/casting/method_consolidator.rb",
"lib/casting/missing_method_client.rb",
"lib/casting/missing_method_client_class.rb",
"lib/casting/null.rb",
"lib/casting/super_delegate.rb",
"lib/casting/version.rb",
"LICENSE",
"Rakefile",
"README.md"]
gem.name = "casting"
gem.version = Casting::VERSION
gem.license = "MIT"
gem.required_ruby_version = ">= 2.7"
end