-
Notifications
You must be signed in to change notification settings - Fork 100
/
canonical-rails.gemspec
25 lines (20 loc) · 1.05 KB
/
canonical-rails.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "canonical-rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "canonical-rails"
s.version = CanonicalRails::VERSION
s.authors = ["Denis Ivanov"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/jumph4x/canonical-rails"
s.summary = "Simple and configurable Rails canonical ref tag helper"
s.description = "Configurable, but assumes a conservative strategy by default with a goal to solve many search engine index problems: multiple hostnames, inbound links with arbitrary parameters, trailing slashes. "
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency 'actionview', '>= 4.1', '< 7.3'
s.add_development_dependency 'actionpack', '>= 4.1', '< 7.3'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'rspec-rails', '~> 4.0.1'
s.add_development_dependency 'pry'
end