quartz 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d520e80d9a379cdb4307bb348bb432575e6d1b49
4
- data.tar.gz: 3aff1a2208541befddf074d95555989f0dec15fe
3
+ metadata.gz: a5b00701c21ace8ff2baa69984aef6e95e9ef6d3
4
+ data.tar.gz: b39120a6543122754b3fb5143b3b3643df25b237
5
5
  SHA512:
6
- metadata.gz: c00b4e411caff77ac6cbf23eeb921f27cd4fc98ccd73f5fd096c6913dace57037a995e38feeb58d4a8b46c06403a706c8093abf29ccbbc916b42556d442d4493
7
- data.tar.gz: 7bbd949d31479cbe7aa5263245d09cc1650fc1024454f90b03d3047948ff24ed8e5d8bdea09c2071b13c5f84a33f81f304992ba36e4c4a9f0698521054b5f121
6
+ metadata.gz: 400e7c1be36e50c6eb1f7ee13c2697455c429a858a3bfb39830001abd35fb5c87841cf239529acb7528d1e43e9b000f3619471cbead3163b527708f622ca2713
7
+ data.tar.gz: 28a34b4c6d77ceabf714273a5087f6fd45e0452d703c13e62fef4dd53fe018af847d476aecd6c9d4cae46ebb11f24fb1e4f5f79ed34ca346db6f403b998cf5f4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -3,6 +3,9 @@ require 'quartz'
3
3
  go_process = Quartz::GoProcess.new(file_path: 'lookup_dns.go')
4
4
  client = Quartz::Client.new(go_process)
5
5
 
6
+ puts "Structs: #{client.structs}"
7
+ puts "Struct methods for #{client[:resolver].struct_name}: #{client[:resolver].struct_methods}"
8
+
6
9
  puts client[:resolver].call('FindIPs',
7
10
  'Hostnames' => ['www.google.com',
8
11
  'www.facebook.com',
@@ -1,6 +1,6 @@
1
1
  class Quartz::GoStruct
2
2
 
3
- attr_reader :struct_methods
3
+ attr_reader :struct_name, :struct_methods
4
4
 
5
5
  def initialize(struct_name, method_info, process)
6
6
  @struct_name = struct_name
data/quartz.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: quartz 0.0.2 ruby lib
5
+ # stub: quartz 0.0.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "quartz"
9
- s.version = "0.0.2"
9
+ s.version = "0.0.3"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["David Huie"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quartz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Huie