-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhyrarchy.gemspec
33 lines (33 loc) · 999 Bytes
/
hyrarchy.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
27
28
29
30
31
32
33
Gem::Specification.new do |s|
s.name = 'hyrarchy'
s.version = '0.3.3'
s.author = 'Dana Danger'
s.homepage = 'http://github.com/DanaDanger/hyrarchy'
s.platform = Gem::Platform::RUBY
s.summary = 'A gem and Rails plugin for working with hierarchic data.'
s.files = [
'lib/hyrarchy.rb',
'lib/hyrarchy/collection_proxy.rb',
'lib/hyrarchy/encoded_path.rb',
'lib/hyrarchy/awesome_nested_set_compatibility.rb',
'rails_plugin/init.rb',
'README.rdoc',
'spec/create_nodes_table.rb',
'spec/database.yml',
'spec/hyrarchy_spec.rb',
'spec/spec_helper.rb',
'test/encoded_path_test.rb',
'test/test_helper.rb'
]
s.test_files = [
'spec/create_nodes_table.rb',
'spec/database.yml',
'spec/hyrarchy_spec.rb',
'spec/spec_helper.rb',
'test/encoded_path_test.rb',
'test/test_helper.rb'
]
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
s.rdoc_options << '--all' << '--inline-source' << '--line-numbers'
end