forked from countries/country_select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
country_select.gemspec
30 lines (25 loc) · 1.24 KB
/
country_select.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'country_select/version'
Gem::Specification.new do |s|
s.name = 'country_select'
s.version = CountrySelect::VERSION
s.licenses = ['MIT']
s.authors = ['Stefan Penner']
s.email = ['[email protected]']
s.homepage = 'https://github.com/stefanpenner/country_select'
s.summary = %q{Country Select Plugin}
s.description = %q{Provides a simple helper to get an HTML select list of countries. The list of countries comes from the ISO 3166 standard. While it is a relatively neutral source of country names, it will still offend some users.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.5'
s.add_development_dependency 'actionpack', '~> 6.1'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'rake', '~> 13'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'wwtd', '~> 1'
s.add_dependency 'countries', '~> 3.0'
s.add_dependency 'sort_alphabetical', '~> 1.1'
end