forked from spadarjauhien/flag-icons-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flag-icons-rails.gemspec
31 lines (25 loc) · 1.21 KB
/
flag-icons-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
26
27
28
29
30
31
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'flag-icons-rails/version'
Gem::Specification.new do |s|
s.name = 'flag-icons-rails'
s.version = FlagIconsRails::VERSION
s.authors = ['Evgeny Garlukovich']
s.email = ['[email protected]']
s.homepage = 'https://github.com/evgenygarl/flag-icons-rails'
s.summary = 'Gem to use `flag-icon-css` library in your Rails projects'
s.description = 'Gem allows to use `flag-icon-css` - a collection of all country flags in SVG - in your Rails projects'
s.license = 'MIT'
s.files = Dir['{app,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.0'
s.add_runtime_dependency 'sass-rails'
s.add_development_dependency 'railties', '>= 3.2', '< 6'
s.add_development_dependency 'activesupport'
s.add_development_dependency 'pry'
s.add_development_dependency 'minitest', '~> 5.10.0'
s.add_development_dependency 'minitest-have_tag', '~> 0.1.0'
s.add_development_dependency 'minitest-emoji', '~> 2.0.0'
s.add_development_dependency 'yard', '~> 0.9.5'
s.add_development_dependency 'rubocop', '~> 0.50.0'
end