-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblank_slate.gemspec
25 lines (22 loc) · 1.06 KB
/
blank_slate.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'blank_slate/version'
Gem::Specification.new do |gem|
gem.name = "blank_slate"
gem.version = BlankSlate::VERSION
gem.authors = ["Jim Gay"]
gem.email = ["[email protected]"]
gem.description = %q{
Create null classes based upon other classes.
This allows you to create null objects without resorting to
method_missing to catch every message passed regardless of
the behavior you designed in your other classes.}
gem.summary = %q{Impliment a null object without resorting to method_missing.}
gem.homepage = "http://github.com/saturnflyer/blank_slate"
gem.files = Dir.glob("lib/**/*", File::FNM_DOTMATCH) + %w[ README.md LICENSE.txt CHANGELOG.md CODE_OF_CONDUCT.md Gemfile ]
gem.test_files = Dir.glob("test/**/*", File::FNM_DOTMATCH)
gem.bindir = "exe"
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
gem.require_paths = ["lib"]
end