rdap 0.1.4 → 1.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 +4 -4
- data/data/asn.json +203 -0
- data/data/dns.json +5357 -0
- data/data/ipv4.json +265 -0
- data/data/ipv6.json +78 -0
- data/lib/rdap.rb +50 -9
- metadata +8 -16
- data/.gitignore +0 -8
- data/.travis.yml +0 -11
- data/Gemfile +0 -9
- data/Gemfile.lock +0 -48
- data/README.md +0 -109
- data/Rakefile +0 -6
- data/bin/console +0 -14
- data/rdap.gemspec +0 -19
data/Rakefile
DELETED
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "rdap"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start(__FILE__)
|
data/rdap.gemspec
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
require_relative 'lib/rdap'
|
|
2
|
-
|
|
3
|
-
Gem::Specification.new do |spec|
|
|
4
|
-
spec.name = "rdap"
|
|
5
|
-
spec.version = RDAP::VERSION
|
|
6
|
-
spec.authors = ["Adrien Rey-Jarthon"]
|
|
7
|
-
spec.email = ["jobs@adrienjarthon.com"]
|
|
8
|
-
|
|
9
|
-
spec.summary = %q{A minimal Ruby client to query RDAP APIs though a bootstrap server}
|
|
10
|
-
spec.homepage = "https://github.com/jarthod/rdap"
|
|
11
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
12
|
-
|
|
13
|
-
# Specify which files should be added to the gem when it is released.
|
|
14
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
15
|
-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
16
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
|
-
end
|
|
18
|
-
spec.require_paths = ["lib"]
|
|
19
|
-
end
|