ke_counties 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2137e67183bfc1334eb922f2c29fde54442e0d3e41b808f63680a1aeb8d2991d
4
+ data.tar.gz: a28de69649d55d5a29d6853b85b69e001f12c8b610cda1679dcce9079b12a11a
5
+ SHA512:
6
+ metadata.gz: b7213f8e76e78bd35247012ffd30d47fa64324379a202530c1966e1bacb992a87e036872a6f4821b811e72198ddb76ddc43e2f77c5460deb6d713349ea0500f8
7
+ data.tar.gz: d6b6120cf8e07c7a22f3e31ff6a53e40cd79674022cbc3c73381966ce25871e6c30f640a0153acfd1efc264322261c83434799c490741a46dcb4ed2902f10566
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,36 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ ke_counties (0.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.5.1)
10
+ rake (13.1.0)
11
+ rspec (3.13.0)
12
+ rspec-core (~> 3.13.0)
13
+ rspec-expectations (~> 3.13.0)
14
+ rspec-mocks (~> 3.13.0)
15
+ rspec-core (3.13.0)
16
+ rspec-support (~> 3.13.0)
17
+ rspec-expectations (3.13.0)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.13.0)
20
+ rspec-mocks (3.13.0)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.13.0)
23
+ rspec-support (3.13.1)
24
+
25
+ PLATFORMS
26
+ ruby
27
+ x86_64-linux
28
+
29
+ DEPENDENCIES
30
+ bundler (>= 2.5.3)
31
+ ke_counties!
32
+ rake (>= 12.3.3)
33
+ rspec (>= 3.13.0)
34
+
35
+ BUNDLED WITH
36
+ 2.5.3
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # KE COUNTIES
@@ -0,0 +1,27 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'ke_counties/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'ke_counties'
7
+ s.version = KeCounties::VERSION
8
+ s.summary = 'Kenya Counties'
9
+ s.description = 'Collection of county codes, their names, capitals and provinces'
10
+ s.authors = ['cess']
11
+ s.email = 'cesswairimu@gmail.com'
12
+ #s.files = ["lib/ke_counties.rb"]
13
+ s.homepage = 'https://github.com/cesswairimu/ke_counties'
14
+ s.license = 'MIT'
15
+ s.files = `git ls-files -z`.split("\x0").reject do |f|
16
+ f.match(%r{^(test|spec|features)/})
17
+ end
18
+
19
+ s.bindir = 'exe'
20
+ s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ s.require_paths = ['lib']
22
+
23
+ s.add_development_dependency 'rspec', '~> 3.13.0'
24
+ s.add_development_dependency 'rake', '~> 12.3.3'
25
+ s.add_development_dependency 'bundler', '~> 13.1.0'
26
+ end
27
+
@@ -0,0 +1,3 @@
1
+ module KeCounties
2
+ VERSION = "0.0.0"
3
+ end
@@ -0,0 +1,2 @@
1
+ require 'ke_counties/version'
2
+ require 'ke_counties/counties'
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ke_counties
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - cess
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.13.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.13.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 12.3.3
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 12.3.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 13.1.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 13.1.0
55
+ description: Collection of county codes, their names, capitals and provinces
56
+ email: cesswairimu@gmail.com
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - ".rspec"
62
+ - Gemfile
63
+ - Gemfile.lock
64
+ - README.md
65
+ - ke_counties.gemspec
66
+ - lib/ke_counties.rb
67
+ - lib/ke_counties/version.rb
68
+ homepage: https://github.com/cesswairimu/ke_counties
69
+ licenses:
70
+ - MIT
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.5.3
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Kenya Counties
91
+ test_files: []