-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
21 lines (20 loc) · 844 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "maintain"
gemspec.summary = "A Ruby state machine that lets your code do the driving"
gemspec.description = %{
Maintain is a simple state machine mixin for Ruby objects. It supports comparisons, bitmasks,
and hooks that really work. It can be used for multiple attributes and will always do its best to
stay out of your way and let your code drive the machine, and not vice versa.
}
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/flipsasser/maintain"
gemspec.authors = ["Flip Sasser"]
gemspec.files = Dir["{lib}/**/*", "CHANGES.md", "LICENSE", "README.markdown"]
gemspec.test_files = Dir["{spec}/**/*"]
gemspec.required_ruby_version = ">= 1.9"
end
rescue LoadError
end