-
Notifications
You must be signed in to change notification settings - Fork 3
/
seo.gemspec
28 lines (24 loc) · 894 Bytes
/
seo.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
$:.push File.expand_path('../lib', __FILE__)
require 'seo/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'seo'
s.version = Seo::VERSION
s.authors = ['Anton Holovko']
s.email = ['[email protected]']
s.homepage = 'https://github.com/kelevro/seo'
s.summary = 'Simple assign seo meta-data'
s.description = 'Simple assign seo meta-data'
s.license = 'MIT'
s.files = Dir['Gemfile', '{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'rails'
s.add_dependency 'globalize'
s.add_dependency 'slim'
s.add_dependency 'meta-tags'
s.add_dependency 'sass-rails'
s.add_dependency 'bootstrap-sass'
s.add_dependency 'breadcrumbs_on_rails'
s.add_dependency 'simple_form'
s.add_dependency 'font-awesome-sass'
s.add_dependency 'multilang_field'
end