-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
title.gemspec
32 lines (26 loc) · 1004 Bytes
/
title.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
30
31
32
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'title/version'
Gem::Specification.new do |spec|
spec.name = 'title'
spec.version = Title::VERSION
spec.authors = ['Caleb Hearth']
spec.email = ['[email protected]']
spec.summary = 'I18n your <title>s'
spec.description = 'Abuses I18n to set HTML <title>s'
spec.homepage = 'https://github.com/calebhearth/title'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ['lib', 'app']
spec.metadata = {
"funding-uri" => "https://github.com/sponsors/calebhearth"
}
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_dependency 'activesupport', '>= 3.1'
spec.add_dependency 'railties', '>= 3.1'
spec.add_dependency 'i18n'
end