shack_kit 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/LICENSE.txt +1 -1
- data/README.md +101 -9
- data/db/sources/{clubs_2016-04-01.csv → clubs_2016-08-25.csv} +522 -516
- data/db/sources/individuals_2016-08-25.csv +12931 -0
- data/db/sources/masterSOTA.scp +471 -35
- data/db/sources/summitslist.csv +17459 -12032
- data/lib/shack_kit/data/base.rb +11 -1
- data/lib/shack_kit/data/ham_qth.rb +32 -0
- data/lib/shack_kit/data/qrz.rb +33 -0
- data/lib/shack_kit/data/qrz_pl.rb +23 -0
- data/lib/shack_kit/data/sota_summits.rb +22 -20
- data/lib/shack_kit/data/sp_calls.rb +2 -2
- data/lib/shack_kit/version.rb +1 -1
- metadata +53 -18
- data/.gitignore +0 -10
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
- data/.travis.yml +0 -4
- data/Gemfile +0 -4
- data/Rakefile +0 -10
- data/db/sources/201511 - RA2WWW_ok.xls +0 -0
- data/db/sources/individuals_2016-04-01.csv +0 -12806
- data/shack_kit.gemspec +0 -39
data/shack_kit.gemspec
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'shack_kit/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "shack_kit"
|
8
|
-
spec.version = ShackKit::VERSION
|
9
|
-
spec.authors = ["Marcin Bajer"]
|
10
|
-
spec.email = ["bajer@tigana.pl"]
|
11
|
-
|
12
|
-
spec.summary = "Set of HAM radio tools packaged by SQ9OZM"
|
13
|
-
spec.description = "Set of HAM radio tools, currently limited to SP and SOTA-related stuff"
|
14
|
-
spec.homepage = "https://github.com/rrrodrigo/shack_kit"
|
15
|
-
spec.license = "MIT"
|
16
|
-
|
17
|
-
spec.required_ruby_version = '>= 2.0.0'
|
18
|
-
|
19
|
-
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
20
|
-
# delete this section to allow pushing this gem to any host.
|
21
|
-
if spec.respond_to?(:metadata)
|
22
|
-
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
23
|
-
else
|
24
|
-
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
25
|
-
end
|
26
|
-
|
27
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
28
|
-
spec.bindir = "exe"
|
29
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
30
|
-
spec.require_paths = ["lib"]
|
31
|
-
|
32
|
-
spec.add_development_dependency 'bundler', '~> 1.10'
|
33
|
-
spec.add_development_dependency 'rake', '~> 10.0'
|
34
|
-
spec.add_development_dependency 'minitest', '~> 5'
|
35
|
-
spec.add_development_dependency 'irbtools', '~> 2'
|
36
|
-
spec.add_runtime_dependency 'sqlite3', '~> 1.3', '>= 1.3.3'
|
37
|
-
spec.add_runtime_dependency 'sequel', '~> 4', '>= 4.28'
|
38
|
-
spec.add_runtime_dependency 'simple-spreadsheet', '~> 0.4', '>= 0.4.1'
|
39
|
-
end
|