-
Notifications
You must be signed in to change notification settings - Fork 17
/
imperator.gemspec
23 lines (19 loc) · 1.09 KB
/
imperator.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "imperator/version"
Gem::Specification.new do |s|
s.name = "imperator"
s.version = Imperator::VERSION
s.authors = ["Keith Gaddis"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/karmajunkie/imperator"
s.summary = %q{Imperator supports the command pattern}
s.description = %q{Imperator is a small gem to help with command objects. The command pattern is a design pattern used to encapsulate all of the information needed to execute a method or process at a point in time. In a web application, commands are typically used to delay execution of a method from the request cycle to a background processor.}
#s.rubyforge_project = "imperator"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_runtime_dependency "virtus", ["~>1.0.0"]
end