locations_ng 0.0.1
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 +7 -0
- data/lib/locations_ng.rb +5 -0
- data/lib/locations_ng/locations/cities.yml +81 -0
- data/lib/locations_ng/locations/lgas.yml +1547 -0
- data/lib/locations_ng/locations/states.yml +297 -0
- data/lib/locations_ng/state.rb +23 -0
- data/lib/locations_ng/version.rb +3 -0
- data/spec/locations_ng/state_spec.rb +28 -0
- data/spec/responses/canonical_states.json +150 -0
- data/spec/spec_helper.rb +22 -0
- metadata +83 -0
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'bundler/setup'
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'rspec'
|
|
4
|
+
require 'json'
|
|
5
|
+
require_relative '../lib/locations_ng'
|
|
6
|
+
|
|
7
|
+
Bundler.setup
|
|
8
|
+
|
|
9
|
+
RSpec.configure do |config|
|
|
10
|
+
config.expect_with :rspec do |c|
|
|
11
|
+
c.syntax = :expect
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
config.filter_run :focus
|
|
15
|
+
config.run_all_when_everything_filtered = true
|
|
16
|
+
config.profile_examples = 3
|
|
17
|
+
config.order = "random"
|
|
18
|
+
|
|
19
|
+
config.expect_with :rspec do |expectations|
|
|
20
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
21
|
+
end
|
|
22
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: locations_ng
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Fiyin Adebayo
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-07-17 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.2.6
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.2.6
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rspec
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '3.5'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '3.5'
|
|
41
|
+
description: Provides methods to get all states, their cities and LGAs in Nigeria.
|
|
42
|
+
email: fiyinsimeon@gmail.com
|
|
43
|
+
executables: []
|
|
44
|
+
extensions: []
|
|
45
|
+
extra_rdoc_files: []
|
|
46
|
+
files:
|
|
47
|
+
- lib/locations_ng.rb
|
|
48
|
+
- lib/locations_ng/locations/cities.yml
|
|
49
|
+
- lib/locations_ng/locations/lgas.yml
|
|
50
|
+
- lib/locations_ng/locations/states.yml
|
|
51
|
+
- lib/locations_ng/state.rb
|
|
52
|
+
- lib/locations_ng/version.rb
|
|
53
|
+
- spec/locations_ng/state_spec.rb
|
|
54
|
+
- spec/responses/canonical_states.json
|
|
55
|
+
- spec/spec_helper.rb
|
|
56
|
+
homepage: https://github.com/ceemion/locations_ng
|
|
57
|
+
licenses:
|
|
58
|
+
- MIT
|
|
59
|
+
metadata: {}
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
require_paths:
|
|
63
|
+
- lib
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 2.3.1
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
requirements: []
|
|
75
|
+
rubyforge_project:
|
|
76
|
+
rubygems_version: 2.5.1
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 4
|
|
79
|
+
summary: States, Cities and LGAs in Nigeria.
|
|
80
|
+
test_files:
|
|
81
|
+
- spec/locations_ng/state_spec.rb
|
|
82
|
+
- spec/responses/canonical_states.json
|
|
83
|
+
- spec/spec_helper.rb
|