forked from comfy/active_link_to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_active_link_to.gemspec
28 lines (23 loc) · 1.1 KB
/
simple_active_link_to.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
# frozen_string_literal: true
$:.unshift File.expand_path('lib', __dir__)
require 'simple_active_link_to/version'
Gem::Specification.new do |s|
s.name = 'simple_active_link_to'
s.version = SimpleActiveLinkTo::VERSION
s.authors = ['Fajarullah']
s.email = ['[email protected]']
s.homepage = 'http://github.com/frullah/simple_active_link_to'
s.summary = 'ActionView helper to render currently active links'
s.description = 'Helpful method when you need to add some logic that figures out if the link (or more often navigation item) is selected based on the current page or other arbitrary condition'
s.license = 'MIT'
s.files = Dir["README.md", "LICENSE", "lib/**/*"]
s.required_ruby_version = '>= 2.4.0'
s.add_development_dependency 'minitest'
s.add_development_dependency 'nokogiri'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'rake'
s.add_development_dependency 'benchmark'
s.add_development_dependency 'benchmark-ips'
s.add_dependency 'actionpack', '>= 5.0'
s.add_dependency 'activesupport', '>= 5.0'
end