Skip to content

Commit

Permalink
Gemified and updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesds committed Sep 22, 2011
1 parent d3b5d86 commit d23b393
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
17 changes: 12 additions & 5 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
CountrySelect
=============
# Country-Select

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.

Users are strongly advised to evaluate the suitability of this list given their user base.

Example
=======
## Installation

country_select("user", "country_name")
Install as a gem using

gem install country-select

Or put the following in your Gemfile

gem 'country-select'

## Example

country_select("user", "country_name")

Copyright (c) 2008 Michael Koziarski, released under the MIT license
11 changes: 11 additions & 0 deletions country-select.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Gem::Specification.new do |s|
s.name = 'country-select'
s.version = '1.0.2'
s.date = '2011-09-22'
s.summary = 'Country select box'
s.description = 'Provides a form helper to insert a country select box using the ISO 3166 country list'
s.authors = [ 'Michael Koziarski', 'James Dean Shepherd' ]
s.email = 'jamesds2007@gmail.com'
s.files = [ 'lib/country_select.rb' ]
s.homepage = 'http://github.com/jamesds/iso-3166-country-select'
end

0 comments on commit d23b393

Please sign in to comment.