To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / lib / plugins / awesome_nested_set / awesome_nested_set.gemspec @ 1298:4f746d8966dd
History | View | Annotate | Download (904 Bytes)
| 1 |
# -*- encoding: utf-8 -*-
|
|---|---|
| 2 |
lib = File.expand_path('../lib/', __FILE__) |
| 3 |
$:.unshift lib unless $:.include?(lib) |
| 4 |
require 'awesome_nested_set/version'
|
| 5 |
|
| 6 |
Gem::Specification.new do |s| |
| 7 |
s.name = %q{awesome_nested_set}
|
| 8 |
s.version = ::AwesomeNestedSet::VERSION |
| 9 |
s.authors = ["Brandon Keepers", "Daniel Morrison", "Philip Arndt"] |
| 10 |
s.description = %q{An awesome nested set implementation for Active Record}
|
| 11 |
s.email = %q{info@collectiveidea.com}
|
| 12 |
s.extra_rdoc_files = [ |
| 13 |
"README.rdoc"
|
| 14 |
] |
| 15 |
s.files = Dir.glob("lib/**/*") + %w(MIT-LICENSE README.rdoc CHANGELOG) |
| 16 |
s.homepage = %q{http://github.com/collectiveidea/awesome_nested_set}
|
| 17 |
s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"] |
| 18 |
s.require_paths = ["lib"]
|
| 19 |
s.rubygems_version = %q{1.3.6}
|
| 20 |
s.summary = %q{An awesome nested set implementation for Active Record}
|
| 21 |
s.add_runtime_dependency 'activerecord', '>= 3.0.0' |
| 22 |
end
|