-
Notifications
You must be signed in to change notification settings - Fork 17
/
middleman-navtree.gemspec
29 lines (23 loc) · 1.07 KB
/
middleman-navtree.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'date'
Gem::Specification.new do |s|
s.name = "middleman-navtree"
s.version = "0.1.11"
s.licenses = ['MIT']
s.date = Date.today.to_s
s.summary = "For building navigation trees with Middleman"
s.description = "This extension copies the site structure to tree.yml and provides helpers for printing parts of the tree in your middleman templates."
s.platform = Gem::Platform::RUBY
s.authors = ["Bryan Braun"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/bryanbraun/middleman-navtree"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# The version of middleman-core this extension depends on.
s.add_runtime_dependency("middleman-core", [">= 3.3"])
s.add_runtime_dependency("titleize", ["~> 1.3"])
s.add_runtime_dependency("i18n", ["~> 0.7.0"])
end