Created
July 23, 2010 22:55
-
-
Save matthodan/488181 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a ruby array of all Canadian provinces and corresponding abbreviations | |
# that are recognized by PayPal's API as of July 23, 2010 | |
@canada_province_codes = [ | |
['Alberta', 'AB'], | |
['British Columbia', 'BC'], | |
['Manitoba', 'MB'], | |
['New Brunswick', 'NB'], | |
['Newfoundland and Labrador', 'NL'], | |
['Northwest Territories', 'NT'], | |
['Nova Scotia', 'NS'], | |
['Nunavut', 'NU'], | |
['Ontario', 'ON'], | |
['Prince Edward Island', 'PE'], | |
['Quebec', 'QC'], | |
['Saskatchewan', 'SK'], | |
['Yukon', 'YT'] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment