-
Notifications
You must be signed in to change notification settings - Fork 21
/
simple_navigation_renderers.gemspec
28 lines (24 loc) · 1.76 KB
/
simple_navigation_renderers.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simple_navigation_renderers/version'
Gem::Specification.new do |spec|
spec.name = "simple_navigation_renderers"
spec.version = SimpleNavigationRenderers::VERSION
spec.authors = ["Pavel Shpak"]
spec.email = ["[email protected]"]
spec.description = %q{simple_navigation_renderers gem adds renderers for Bootstrap 2 and 3. With these renderers you will be able create any bootstrap navigation elements, such as: submenu, navbar-text, divider, header. As well as add icons to menu elements, such as: gliphicons, font-awesome icons, even custom icons. Also you have split option for main menu containing submenu. }
spec.summary = %q{simple_navigation_renderers gem adds renderers for Bootstrap 2 and 3. With these renderers you will be able create any bootstrap navigation elements, such as: submenu, navbar-text, divider, header. As well as add icons to menu elements, such as: gliphicons, font-awesome icons, even custom icons. Also you have split option for main menu containing submenu. }
spec.homepage = "http://github.com/ShPakvel/simple_navigation_renderers"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "simple-navigation", "~> 3.11"
spec.add_development_dependency "actionpack"
spec.add_development_dependency "rspec"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "coveralls", "~> 0.7"
end