nayyar 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -3
- data/.rubocop.yml +1 -0
- data/README.md +3 -0
- data/bin/seed +11 -0
- data/lib/.DS_Store +0 -0
- data/lib/data/districts.yml +74 -0
- data/lib/data/extract.rb +30 -4
- data/lib/data/locations.csv +501 -1
- data/lib/data/states.yml +15 -0
- data/lib/data/townships.yml +430 -17
- data/lib/nayyar/district.rb +1 -0
- data/lib/nayyar/state.rb +1 -0
- data/lib/nayyar/township.rb +1 -0
- data/lib/nayyar/version.rb +1 -1
- metadata +8 -6
data/lib/nayyar/district.rb
CHANGED
data/lib/nayyar/state.rb
CHANGED
data/lib/nayyar/township.rb
CHANGED
data/lib/nayyar/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nayyar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mmhan
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -118,7 +118,9 @@ files:
|
|
|
118
118
|
- README.md
|
|
119
119
|
- Rakefile
|
|
120
120
|
- bin/console
|
|
121
|
+
- bin/seed
|
|
121
122
|
- bin/setup
|
|
123
|
+
- lib/.DS_Store
|
|
122
124
|
- lib/data/.gitkeep
|
|
123
125
|
- lib/data/districts.yml
|
|
124
126
|
- lib/data/extract.rb
|
|
@@ -137,7 +139,7 @@ licenses:
|
|
|
137
139
|
metadata:
|
|
138
140
|
allowed_push_host: https://rubygems.org
|
|
139
141
|
rubygems_mfa_required: 'true'
|
|
140
|
-
post_install_message:
|
|
142
|
+
post_install_message:
|
|
141
143
|
rdoc_options: []
|
|
142
144
|
require_paths:
|
|
143
145
|
- lib
|
|
@@ -152,8 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
152
154
|
- !ruby/object:Gem::Version
|
|
153
155
|
version: '0'
|
|
154
156
|
requirements: []
|
|
155
|
-
rubygems_version: 3.
|
|
156
|
-
signing_key:
|
|
157
|
+
rubygems_version: 3.2.22
|
|
158
|
+
signing_key:
|
|
157
159
|
specification_version: 4
|
|
158
160
|
summary: Nayyar gives you access to State/Regions, Districts and Townships of Myanmar.
|
|
159
161
|
test_files: []
|