1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

A Ruby gem to manage ISO 3166 country names and their

corresponding alpha-2 and alpha-3 codes. Additional
support has been added for ISO 4127 currency information
and standard  conventions for states in the USA
(based on the the 3166-2:US code).

ISO 3166 country codes reference:
  http://en.wikipedia.org/wiki/ISO_3166-1

ISO 4217 currency information:
  http://www.xe.com/iso4217.php
  http://www.xe.com/symbols.php

ISO 3166-2:US code reference:
  http://code.google.com/apis/chart/statecodes.html
  http://en.wikipedia.org/wiki/ISO_3166-2:US

ISO 639 language reference:
  http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes

WWW: http://github.com/SunDawg/country_codes

PR:		ports/156678
Submitted by:	Eric Freeman <freebsdports at chillibear.com>
This commit is contained in:
Steve Wills 2011-05-03 03:11:27 +00:00
parent 7c254b6ea1
commit 1a9ab32a0d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=273523
4 changed files with 44 additions and 0 deletions

View File

@ -3269,6 +3269,7 @@
SUBDIR += rubygem-stream
SUBDIR += rubygem-streetaddress
SUBDIR += rubygem-stringex
SUBDIR += rubygem-sundawg_country_codes
SUBDIR += rubygem-systemu
SUBDIR += rubygem-templater
SUBDIR += rubygem-test-unit

View File

@ -0,0 +1,20 @@
# Ports collection makefile for: rubygem-sundawg_country_codes
# Date created: 27 April 2011
# Whom: Eric Freeman <freebsdports@chillibear.com>
#
# $FreeBSD$
#
PORTNAME= sundawg_country_codes
PORTVERSION= 0.0.6
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= freebsdports@chillibear.com
COMMENT= Manage ISO 3166 country names and codes
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/sundawg_country_codes-0.0.6.gem) = e6d5a30651372345b9542480a3611eab4675c0056fe529ead9f1ed2d6b3aac1d
SIZE (rubygem/sundawg_country_codes-0.0.6.gem) = 18432

View File

@ -0,0 +1,21 @@
A Ruby gem to manage ISO 3166 country names and their
corresponding alpha-2 and alpha-3 codes. Additional
support has been added for ISO 4127 currency information
and standard conventions for states in the USA
(based on the the 3166-2:US code).
ISO 3166 country codes reference:
http://en.wikipedia.org/wiki/ISO_3166-1
ISO 4217 currency information:
http://www.xe.com/iso4217.php
http://www.xe.com/symbols.php
ISO 3166-2:US code reference:
http://code.google.com/apis/chart/statecodes.html
http://en.wikipedia.org/wiki/ISO_3166-2:US
ISO 639 language reference:
http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
WWW: http://github.com/SunDawg/country_codes