Sha256: 0be1ddcba7d1881dd00022ec9dba0333e3bc9d9d6fe02e6ea29cf208555115c2
Contents?: true
Size: 863 Bytes
Versions: 1
Compression:
Stored size: 863 Bytes
Contents
# 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 = ['frullah12@gmail.com'] 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 = `git ls-files`.split("\n") s.required_ruby_version = '>= 2.4.0' s.add_dependency 'actionpack', '>= 5.0' s.add_dependency 'activesupport', '>= 5.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_active_link_to-1.0.3 | simple_active_link_to.gemspec |