forked from manafire/country_code_select
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathi18n_country_select.gemspec
27 lines (24 loc) · 1.08 KB
/
i18n_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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "i18n_country_select/version"
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "i18n_country_select"
s.version = I18nCountrySelect::VERSION
s.authors = ["Brian McQuay ([email protected])"]
s.email = "[email protected]"
s.homepage = "https://github.com/onomojo/i18n_country_select"
s.summary = "I18n country select helper"
s.description = "A simple country code select helper that works with I18n translations."
s.files = Dir.glob("lib/**/*") + %w(README.rdoc MIT-LICENSE)
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.required_rubygems_version = '>= 1.3.5'
s.add_dependency('i18n', '~> 0.9.3')
s.add_dependency('i18n-country-translations', '~> 1.0', '>= 1.3.0')
s.add_runtime_dependency 'unicode_utils', '~> 1.0', '>= 1.0.0'
s.add_development_dependency 'rails', '~> 4.0', '>= 4.0.0'
s.add_development_dependency 'rspec-rails', '~> 3.5', '>= 3.5.2'
s.licenses = ['MIT', 'GPL-3.0']
end