-
Notifications
You must be signed in to change notification settings - Fork 28
/
seo_meta.gemspec
27 lines (25 loc) · 1.03 KB
/
seo_meta.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
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'seo_meta'
s.authors = ['Philip Arndt']
s.homepage = 'https://github.com/parndt/seo_meta'
s.email = 'gems@p.arndt.io'
s.version = '3.1.0'
s.description = 'SEO Meta tags plugin for Ruby on Rails'
s.summary = 'SEO Meta tags plugin'
s.require_paths = %w(lib)
s.files = Dir['lib/**/*', 'db/**/*', 'app/**/*', 'config/**/*', '*.md']
s.license = %q{MIT}
s.add_development_dependency 'combustion'
s.add_development_dependency 'rspec'
unless defined?(JRUBY_VERSION)
s.add_development_dependency 'sqlite3'
else
s.add_development_dependency 'activerecord-jdbcsqlite3-adapter'
end
s.add_dependency 'railties', '>= 5.0.0'
s.cert_chain = [File.expand_path('certs/parndt.pem', __dir__)]
if $PROGRAM_NAME =~ /gem\z/ && ARGV.include?('build') && ARGV.include?(__FILE__)
s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
end