forked from flipsasser/maintain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maintain.gemspec
38 lines (35 loc) · 1.79 KB
/
maintain.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
31
32
33
34
35
36
37
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "maintain"
s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Flip Sasser"]
s.date = "2013-09-27"
s.description = "\n Maintain is a simple state machine mixin for Ruby objects. It supports comparisons, bitmasks,\n and hooks that really work. It can be used for multiple attributes and will always do its best to\n stay out of your way and let your code drive the machine, and not vice versa.\n "
s.email = "[email protected]"
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
"CHANGES.md",
"README.markdown",
"lib/maintain.rb",
"lib/maintain/backend.rb",
"lib/maintain/backend/active_record.rb",
"lib/maintain/backend/base.rb",
"lib/maintain/backend/data_mapper.rb",
"lib/maintain/bitmask_value.rb",
"lib/maintain/integer_value.rb",
"lib/maintain/maintainer.rb",
"lib/maintain/value.rb"
]
s.homepage = "http://github.com/flipsasser/maintain"
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9")
s.rubygems_version = "2.0.3"
s.summary = "A Ruby state machine that lets your code do the driving"
s.test_files = ["spec/active_record_spec.rb", "spec/aggregates_spec.rb", "spec/bitwise_spec.rb", "spec/class_methods_spec.rb", "spec/comparing_state_spec.rb", "spec/data_mapper_spec.rb", "spec/defining_states_spec.rb", "spec/hooks_spec.rb", "spec/integer_spec.rb", "spec/maintain_spec.rb", "spec/object_spec.rb", "spec/proxy_spec.rb", "spec/setting_state_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/subclass_spec.rb"]
end