annotate vendor/plugins/awesome_nested_set/awesome_nested_set.gemspec @ 509:c1f5f0299180
cannam
OK, it appears that we do need en-GB.yml to exist -- but it can be empty
| author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
| date |
Thu, 14 Jul 2011 10:40:18 +0100 |
| parents |
513646585e45 |
| children |
|
| rev |
line source |
|
Chris@0
|
1 Gem::Specification.new do |s|
|
|
Chris@0
|
2 s.name = "awesome_nested_set"
|
|
Chris@0
|
3 s.version = "1.1.1"
|
|
Chris@0
|
4 s.summary = "An awesome replacement for acts_as_nested_set and better_nested_set."
|
|
Chris@0
|
5 s.description = s.summary
|
|
Chris@0
|
6
|
|
Chris@0
|
7 s.files = %w(init.rb MIT-LICENSE Rakefile README.rdoc lib/awesome_nested_set.rb lib/awesome_nested_set/compatability.rb lib/awesome_nested_set/helper.rb lib/awesome_nested_set/named_scope.rb rails/init.rb test/awesome_nested_set_test.rb test/test_helper.rb test/awesome_nested_set/helper_test.rb test/db/database.yml test/db/schema.rb test/fixtures/categories.yml test/fixtures/category.rb test/fixtures/departments.yml test/fixtures/notes.yml)
|
|
Chris@0
|
8
|
|
Chris@0
|
9 s.add_dependency "activerecord", ['>= 1.1']
|
|
Chris@0
|
10
|
|
Chris@0
|
11 s.has_rdoc = true
|
|
Chris@0
|
12 s.extra_rdoc_files = [ "README.rdoc"]
|
|
Chris@0
|
13 s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
|
|
Chris@0
|
14
|
|
Chris@0
|
15 s.test_files = %w(test/awesome_nested_set_test.rb test/test_helper.rb test/awesome_nested_set/helper_test.rb test/db/database.yml test/db/schema.rb test/fixtures/categories.yml test/fixtures/category.rb test/fixtures/departments.yml test/fixtures/notes.yml)
|
|
Chris@0
|
16 s.require_path = 'lib'
|
|
Chris@0
|
17 s.author = "Collective Idea"
|
|
Chris@0
|
18 s.email = "info@collectiveidea.com"
|
|
Chris@0
|
19 s.homepage = "http://collectiveidea.com"
|
|
Chris@0
|
20 end
|