postcode_gem 0.2.7 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1eab1e7cd2da8739aede700bd989d6b722ed7dd3ffbd070c037e47d2e978d92f
4
- data.tar.gz: fde152bc2fd49d7879ebe9848ff5fd01022a692bd69b41f061c8ba8ebc10bf4d
3
+ metadata.gz: 3121cf7459c28fb6eda75b9552d0ba626ed1602ccf92e90a7e1da4efa25492dd
4
+ data.tar.gz: 722e56207758896d7d7bd0e737963fda0ed7e9c15d1ae02a3fffdbaff377b4a2
5
5
  SHA512:
6
- metadata.gz: 6137797d35904ee9b500d83f9829719cb33db82f363afc3f1e96b1d25441a0100ce7e0911ae145881ded9ac9d30cf47467b748def0c9f226ef75718367f0a581
7
- data.tar.gz: 790ee54e009f940446fb1ad3efadd9730fb1d2874113e5c57627694d45ca88d7581344ca16c2cbb0fa44a0459ca8280637548e415cd91f8e8b4d3b2bcacfc0c0
6
+ metadata.gz: 8a10f74185d31c4501eac6b233765276ee947d941bd68535b0715467875fbe9d2c395495ec67b06b5342a3255aa73d3e172333cb447f4f7da31978cd4e58ab61
7
+ data.tar.gz: efc440bec98dbbdcecd9b65d4a1f32079b71cf75b060cded39b862d9f68e71feca0f9da23e71992de7d34b64439ed6e68a2dd42a0006860164577b47ae502529
@@ -1,39 +1,3 @@
1
- require "json"
2
- require "tty-prompt"
3
- require "pry"
1
+ require_relative 'postcode_gem/handle'
4
2
 
5
-
6
- module PostcodeGem
7
- def self.select_country
8
- @data = JSON.load(File.read('./data/postcode_areacode.json'))
9
- attr_accessor :country, :city, :zipcode
10
- prompt = TTY::Prompt.new
11
- @country = prompt.select('Enter the country you want to select', %w(Vietnam England Japan))
12
- end
13
- def self.process_input
14
- select_country
15
- print "Enter the city or area code you want to search: "
16
- @city_zipcode = gets.chomp
17
- @firstWord = @city_zipcode.split('')[0]
18
- end
19
- def output_zipcode
20
- process_input
21
- @city = @data["#{@country}"].values
22
- @zipcode = @data["#{@country}"].keys
23
- @data_country = @data["#{@country}"]
24
-
25
- if @data_country.has_key?(@city_zipcode)
26
- puts @data_country.values_at("#{@city_zipcode}")
27
- elsif @data_country.has_key?(@city_zipcode) == false && /[0-9]/.match(@firstWord)
28
- puts @zipcode.map { |v| puts v if v.start_with?(@firstWord) }
29
- end
30
- if @data_country.has_value?(@city_zipcode)
31
- puts @data_country.key(@city_zipcode)
32
- elsif @data_country.has_value?(@city_zipcode) == false && /[a-z]/.match(@firstWord)
33
- puts @city.map { |v| puts v if v.start_with?(@firstWord) }
34
- end
35
- end
36
- module_function :output_zipcode
37
- end
38
-
39
- PostcodeGem.output_zipcode
3
+ PostcodeGem.output_zipcode
@@ -1,3 +1,3 @@
1
1
  module PostcodeGem
2
- VERSION = "0.2.7"
2
+ VERSION = "0.3.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: postcode_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - PhuongTr1501