Skip to content

Commit

Permalink
update docs add gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gvarela committed Dec 14, 2009
1 parent 95f09b0 commit 7940917
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -17,6 +17,8 @@ tmtags
## PROJECT::GENERAL
coverage
rdoc
doc
pkg

## PROJECT::SPECIFIC
.yardoc
12 changes: 10 additions & 2 deletions README.rdoc
@@ -1,6 +1,14 @@
= rulesy
= Rulesy

A very simple dsl for managing dynamic business rules. See the specs for examples.

== Install
gem install rulesy

== Links
http://rdoc.info/projects/gvarela/rulesy
http://gemcutter.org/gems/rulesy

Description goes here.

== Note on Patches/Pull Requests

Expand Down
59 changes: 59 additions & 0 deletions rulesy.gemspec
@@ -0,0 +1,59 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rulesy}
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gabe Varela"]
s.date = %q{2009-12-14}
s.description = %q{A super simple dsl for managing dynamic business rules}
s.email = %q{gvarela@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/rulesy.rb",
"lib/rulesy/definition.rb",
"rails/init.rb",
"spec/rulesy_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/gvarela/rulesy}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{A super simple dsl for managing dynamic business rules}
s.test_files = [
"spec/rulesy_spec.rb",
"spec/spec_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
s.add_development_dependency(%q<yard>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<yard>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<yard>, [">= 0"])
end
end

0 comments on commit 7940917

Please sign in to comment.