Giter Site home page Giter Site logo

maceonrails / indonesia Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dimasjt/indonesia

0.0 2.0 0.0 821 KB

Ruby gem for get Indonesia addresses (provinces, regencies, districts and villages)

Home Page: https://github.com/dimasjt/indonesia

License: MIT License

Ruby 98.98% Shell 1.02%

indonesia's Introduction

Gem Version Build Status

Indonesia

Get Indonesia addresses provinces, regencies and districts. Data from edwardsamuel/Wilayah-Administratif-Indonesia

Installation

Add this line to your application's Gemfile:

gem 'indonesia', '~> 0.5.0'

And then execute:

$ bundle

Or install it yourself as:

$ gem install indonesia

Usage

Indonesia.provinces

# result
=> [{:id=>11, :name=>"ACEH"}, {:id=>12, :name=>"SUMATERA UTARA"}, ...]
  • Get all regencies
Indonesia.regencies

# result
=> [{:id=>1101, :province_id=>11, :name=>"KABUPATEN SIMEULUE"}, ...]
  • Get regencies by Province ID
Indonesia.regencies(11)
  • Get all districts
Indonesia.districts

# result
=> [{:id=>1101010, :regency_id=>1101, :name=>"TEUPAH SELATAN"}, ...]
  • Get all districts by Regency ID
Indonesia.districts(1101)
  • Get all villages
Indonesia.villages

# result
=> [{:id=>1101010001, :district_id=>1101010, :name=>"LATIUNG"},...]
  • Get all districts by district id
Indonesia.villages(1101010)

Rails helper

#options_for_select (:province, :regency, :district)

# provinces
Indonesia.options_for_select(:province)

# result
=> [["ACEH", 11], ["SUMATERA UTARA", 12], ["SUMATERA BARAT", 13], ...]

# regencies
Indonesia.options_for_select(:regency)
# or
Indonesia.options_for_select(:regency, 11) # 11 is province_id

# result
=> [["KABUPATEN SIMEULUE", 1101], ["KABUPATEN ACEH SINGKIL", 1102], ...]

# districts
Indonesia.options_for_select(:district, 1101) # 1101 is regency_id

# result
=> [["TEUPAH SELATAN", 1101010], ["SIMEULUE TIMUR", 1101020], ...]

Generate for select options rails

  • Province
<%= f.select :province_id, Indonesia.options_for_select(:province) %>
  • Regency
<%= f.select :regency_id, Indonesia.options_for_select(:regency) %>
or
<%= f.select :regency_id, Indonesia.options_for_select(:regency, 11) %>
  • District
<%= f.select :district_id, Indonesia.options_for_select(:district) %>
or
<%= f.select :district_id, Indonesia.options_for_select(:district, 1101) %>

Rails migrations

Generate models, migrations and save address data to database

Installation

$ rails generate indonesia:install

$ rake db:migrate

This will create models Province, Regency and District

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dimasjt/indonesia. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

indonesia's People

Contributors

dimasjt avatar maceonrails avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.