torigoya_kit 0.0.6 → 0.0.7

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: f862129454b0659e83d5e15199696934a225d8bd
4
- data.tar.gz: 8c1bb7bd0f5c152cdcc6d1a37c96513ce56aa3a2
3
+ metadata.gz: 861c5a9f9f035efcdffa4f9e0daef540f6df8d75
4
+ data.tar.gz: 7f6b9d783b48c4d70b40c30f0b2d2035031e727b
5
5
  SHA512:
6
- metadata.gz: 926aec2b1e4aa9f6bfe3fcd72705b3cc450d67363cdc9929f23496374685b8c1b26e766b534ca1aca9daa960fe406170c6ee4957cf5f2006df49e3a37a6a6be8
7
- data.tar.gz: e707123e739cc648e90fa1e144012baa36caf1c87454c30c02f78645017a6f3f298dc61cfcb4a09c921bf7f1715b0e227cfd7adadeabc6dc41cd3b968bcdbb04
6
+ metadata.gz: f68a3011ef05146c59ece8dc724a41d53c42d51f7b4986818a014ec12cec14ff27b2bfd1184a260d0a0f4304916c2d4c97feac82338738439ab03c95083fc7bf
7
+ data.tar.gz: 43bb72275911ede3607c47bb40e937ec5a364fc1e76239c227987ac797cd3085f0c8ffe84be9fb1b1be6c836b2e8614f28599010bbbd02a6f5ebefb44ddcbfe1
@@ -5,19 +5,19 @@ require_relative 'stream_result'
5
5
 
6
6
  module TorigoyaKit
7
7
  class TicketResultUnit
8
- def initialize()
9
- @out = ""
10
- @err = ""
11
- @result = nil
8
+ def initialize(out="", err="", result=nil)
9
+ @out = out
10
+ @err = err
11
+ @result = result
12
12
  end
13
13
  attr_accessor :out, :err, :result
14
14
  end
15
15
 
16
16
  class TicketResult
17
- def initialize
18
- @compile = nil
19
- @link = nil
20
- @run = {}
17
+ def initialize(compile=nil, link=nil, run={})
18
+ @compile = compile
19
+ @link = link
20
+ @run = run
21
21
  end
22
22
  attr_accessor :compile, :link, :run
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module TorigoyaKit
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: torigoya_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - yutopp