annotate .svn/pristine/6d/6dbc9c710fb965b8c65653004923b7333ec3b49d.svn-base @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +0100 |
parents |
cbb26bc654de |
children |
|
rev |
line source |
Chris@909
|
1 Gem::Specification.new do |s|
|
Chris@909
|
2 s.name = "awesome_nested_set"
|
Chris@909
|
3 s.version = "1.1.1"
|
Chris@909
|
4 s.summary = "An awesome replacement for acts_as_nested_set and better_nested_set."
|
Chris@909
|
5 s.description = s.summary
|
Chris@909
|
6
|
Chris@909
|
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@909
|
8
|
Chris@909
|
9 s.add_dependency "activerecord", ['>= 1.1']
|
Chris@909
|
10
|
Chris@909
|
11 s.has_rdoc = true
|
Chris@909
|
12 s.extra_rdoc_files = [ "README.rdoc"]
|
Chris@909
|
13 s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
|
Chris@909
|
14
|
Chris@909
|
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@909
|
16 s.require_path = 'lib'
|
Chris@909
|
17 s.author = "Collective Idea"
|
Chris@909
|
18 s.email = "info@collectiveidea.com"
|
Chris@909
|
19 s.homepage = "http://collectiveidea.com"
|
Chris@909
|
20 end
|