Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ruleby/ruleby.gemspec
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
18 lines (17 sloc)
733 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.name = %q{ruleby} | |
s.version = "0.9.b7" | |
s.authors = [%q{Joe Kutner}, %q{Matt Smith}] | |
s.description = %q{Ruleby is a rule engine written in the Ruby language. It is a system for executing a set | |
of IF-THEN statements known as production rules. These rules are matched to objects using | |
the forward chaining Rete algorithm. Ruleby provides an internal Domain Specific Language | |
(DSL) for building the productions that make up a Ruleby program. | |
} | |
s.email = %q{jpkutner@gmail.com} | |
s.homepage = %q{http://ruleby.org} | |
s.files = `git ls-files`.split("\n") | |
s.require_paths = [%q{lib}] | |
s.rubyforge_project = %q{ruleby} | |
s.summary = %q{Rete based Ruby Rule Engine} | |
s.license = %q{Ruby} | |
end |