Socket
Socket
Sign inDemoInstall

has_addresses

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

has_addresses


Version published
Maintainers
1
Created
Source

= has_addresses

+has_addresses+ demonstrates a reference implementation for handling countries, regions, and addresses.

== Resources

API

  • http://api.pluginaweek.org/has_addresses

Bugs

Development

Source

  • git://github.com/pluginaweek/has_addresses.git

== Description

Countries, regions, and addresses are all simple models whose data and functionality should be able to be standardized across multiple applications. has_addresses adds support for countries and regions based on the ISO 3166 and ISO 3166-2 standard. The data for these standards is obtained through the open-source Debian package, iso-codes.

Along with the simple Country and Region models, addresses can be defined and integrated based on the data in these models. Addresses are minimalistic in terms of the type of data required.

== Usage

Note that this is a reference implementation and, most likely, should be modified for your own usage.

=== Installation

+has_addresses+ requires additional database tables to work. You can generate a migration for these tables like so:

script/generate has_addresses

Then simply migrate your database:

rake db:migrate

=== Example

address = Address.new( :street_1 => '1600 Amphitheatre Parkway', :city => 'Mountain View', :region => 'US-CA', :postal_code => '94043' ) address.single_line # => "1600 Amphitheatre Parkway, Mountain View, California 94043, United States"

== Testing

Before you can run any tests, the following gem must be installed:

To run against a specific version of Rails:

rake test RAILS_FRAMEWORK_ROOT=/path/to/rails

== Dependencies

FAQs

Package last updated on 07 Mar 2010

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc