forked from countries/country_select
-
Notifications
You must be signed in to change notification settings - Fork 8
/
country_select.gemspec
29 lines (24 loc) · 1.19 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
# -*- 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.rubyforge_project = 'country_select'
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.add_development_dependency 'actionpack', '~> 3'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'wwtd'
s.add_dependency 'countries', '~> 0.9', '>= 0.9.3'
end