forked from drogus/tagtical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tagtical.gemspec
27 lines (22 loc) · 1.09 KB
/
tagtical.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
Gem::Specification.new do |s|
s.name = %q{tagtical}
s.version = "1.5.9"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Aryk Grosz"]
s.date = %q{2012-02-23}
s.description = %q{Tagtical allows you do create subclasses for Tag and add additional functionality in an STI fashion. For example. You could do Tag::Color.find_by_name('blue').to_rgb. It also supports storing weights or relevance on the taggings.}
s.email = %q{aryk@mixbook.com}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = Dir["{rails,generators,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc", "CHANGELOG", "VERSION"]
s.homepage = %q{https://github.com/Mixbook/tagtical}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{Tagtical is a tagging plugin for Rails that provides weighting, contexts, and inheritance for tags.}
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", "~> 3.0"
s.add_development_dependency "sqlite3"
s.add_development_dependency "mysql"
s.add_development_dependency "rspec"
end