quartz 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ede307136d543e7451dd9328969152e7d9b29d81
4
+ data.tar.gz: 01c7dceb7ea7859fda5a716566bca594cfb8c53a
5
+ SHA512:
6
+ metadata.gz: cdfaebcd6fd90c55b8a9e2d11171827f15b92a5fe07d87cfe9306a28f222c1f803672a4fc7e704031b71d5a57daaf5db49e06448da8a9b6632836bc5bccae19c
7
+ data.tar.gz: a015e450a1f9e6e19d32fed4b3a0ebaf5dd03e37842f8ebb813d65619ce28ed6799aeb09626c60f071a30397f9b06ea7d03f5df55b1afd318b52bdfe200e6032
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.8.0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler", "~> 1.0"
12
+ gem "jeweler", "~> 2.0.1"
13
+ gem "simplecov", ">= 0"
14
+ end
@@ -0,0 +1,73 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ addressable (2.3.6)
5
+ builder (3.2.2)
6
+ descendants_tracker (0.0.4)
7
+ thread_safe (~> 0.3, >= 0.3.1)
8
+ diff-lcs (1.1.3)
9
+ docile (1.1.5)
10
+ faraday (0.9.0)
11
+ multipart-post (>= 1.2, < 3)
12
+ git (1.2.7)
13
+ github_api (0.11.3)
14
+ addressable (~> 2.3)
15
+ descendants_tracker (~> 0.0.1)
16
+ faraday (~> 0.8, < 0.10)
17
+ hashie (>= 1.2)
18
+ multi_json (>= 1.7.5, < 2.0)
19
+ nokogiri (~> 1.6.0)
20
+ oauth2
21
+ hashie (3.0.0)
22
+ highline (1.6.21)
23
+ jeweler (2.0.1)
24
+ builder
25
+ bundler (>= 1.0)
26
+ git (>= 1.2.5)
27
+ github_api
28
+ highline (>= 1.6.15)
29
+ nokogiri (>= 1.5.10)
30
+ rake
31
+ rdoc
32
+ json (1.8.1)
33
+ jwt (1.0.0)
34
+ mini_portile (0.6.0)
35
+ multi_json (1.10.1)
36
+ multi_xml (0.5.5)
37
+ multipart-post (2.0.0)
38
+ nokogiri (1.6.2.1)
39
+ mini_portile (= 0.6.0)
40
+ oauth2 (0.9.4)
41
+ faraday (>= 0.8, < 0.10)
42
+ jwt (~> 1.0)
43
+ multi_json (~> 1.3)
44
+ multi_xml (~> 0.5)
45
+ rack (~> 1.2)
46
+ rack (1.5.2)
47
+ rake (10.3.2)
48
+ rdoc (3.12.2)
49
+ json (~> 1.4)
50
+ rspec (2.8.0)
51
+ rspec-core (~> 2.8.0)
52
+ rspec-expectations (~> 2.8.0)
53
+ rspec-mocks (~> 2.8.0)
54
+ rspec-core (2.8.0)
55
+ rspec-expectations (2.8.0)
56
+ diff-lcs (~> 1.1.2)
57
+ rspec-mocks (2.8.0)
58
+ simplecov (0.8.2)
59
+ docile (~> 1.1.0)
60
+ multi_json
61
+ simplecov-html (~> 0.8.0)
62
+ simplecov-html (0.8.0)
63
+ thread_safe (0.3.4)
64
+
65
+ PLATFORMS
66
+ ruby
67
+
68
+ DEPENDENCIES
69
+ bundler (~> 1.0)
70
+ jeweler (~> 2.0.1)
71
+ rdoc (~> 3.12)
72
+ rspec (~> 2.8.0)
73
+ simplecov
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2014 David Huie
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,18 @@
1
+ = quartz
2
+
3
+ A gem for calling #golang code from ruby
4
+
5
+ == Contributing to quartz
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2014 David Huie. See LICENSE.txt for
18
+ further details.
@@ -0,0 +1,50 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
17
+ gem.name = "quartz"
18
+ gem.homepage = "http://github.com/DavidHuie/quartz"
19
+ gem.license = "MIT"
20
+ gem.summary = "A gem for calling #golang code from ruby"
21
+ gem.description = "A gem for calling #golang code from ruby"
22
+ gem.email = "dahuie@gmail.com"
23
+ gem.authors = ["David Huie"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ desc "Code coverage detail"
35
+ task :simplecov do
36
+ ENV['COVERAGE'] = "true"
37
+ Rake::Task['spec'].execute
38
+ end
39
+
40
+ task :default => :spec
41
+
42
+ require 'rdoc/task'
43
+ Rake::RDocTask.new do |rdoc|
44
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
45
+
46
+ rdoc.rdoc_dir = 'rdoc'
47
+ rdoc.title = "quartz #{version}"
48
+ rdoc.rdoc_files.include('README*')
49
+ rdoc.rdoc_files.include('lib/**/*.rb')
50
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,153 @@
1
+ package quartz
2
+
3
+ import (
4
+ "encoding/json"
5
+ "net"
6
+ "net/rpc"
7
+ "net/rpc/jsonrpc"
8
+ "os"
9
+ "os/signal"
10
+ "reflect"
11
+ "syscall"
12
+ )
13
+
14
+ var (
15
+ quartz *Quartz
16
+ listener net.Listener
17
+ )
18
+
19
+ type Quartz struct {
20
+ Registry map[string]*StructMetadata
21
+ }
22
+
23
+ type MethodMetadata struct {
24
+ Method reflect.Method `json:"-"`
25
+ ArgumentToType map[string]string
26
+ }
27
+
28
+ type StructMetadata struct {
29
+ NameToMethodMetadata map[string]*MethodMetadata
30
+ TargetStruct interface{} `json:"-"`
31
+ }
32
+
33
+ func NewStructMetadata(targetStruct interface{}) *StructMetadata {
34
+ return &StructMetadata{
35
+ make(map[string]*MethodMetadata),
36
+ targetStruct,
37
+ }
38
+ }
39
+
40
+ func RegisterName(name string, s interface{}) error {
41
+ // TODO: check that s is a pointer
42
+
43
+ quartz.Registry[name] = NewStructMetadata(s)
44
+
45
+ t := reflect.TypeOf(s)
46
+ for i := 0; i < t.NumMethod(); i++ {
47
+ method := t.Method(i)
48
+
49
+ // TODO: only export methods with JSON serializable arguments
50
+ // and responses.
51
+
52
+ metadata := &MethodMetadata{
53
+ method,
54
+ StructFieldToType(method.Type.In(1)),
55
+ }
56
+
57
+ quartz.Registry[name].NameToMethodMetadata[method.Name] = metadata
58
+ }
59
+
60
+ return nil
61
+ }
62
+
63
+ func StructFieldToType(t reflect.Type) map[string]string {
64
+ fieldToType := make(map[string]string)
65
+
66
+ for i := 0; i < t.NumField(); i++ {
67
+ fieldToType[t.Field(i).Name] = t.Field(i).Type.String()
68
+ }
69
+
70
+ return fieldToType
71
+ }
72
+
73
+ type CallArgs struct {
74
+ StructName string
75
+ Method string
76
+ MethodArgs string
77
+ }
78
+
79
+ func (q *Quartz) Call(args *CallArgs, response *interface{}) error {
80
+
81
+ // TODO: validate args
82
+
83
+ metadata := quartz.Registry[args.StructName]
84
+ method := metadata.NameToMethodMetadata[args.Method].Method
85
+
86
+ structValue := reflect.ValueOf(metadata.TargetStruct)
87
+ methodArgsValue := reflect.ValueOf([]byte(args.MethodArgs))
88
+ unmarshallerValue := reflect.ValueOf(json.Unmarshal)
89
+ functionResponse := reflect.Indirect(reflect.ValueOf(response))
90
+
91
+ // Determine what arguments the function requires
92
+ argsType := method.Type.In(1)
93
+ responseType := method.Type.In(2).Elem()
94
+ responseValuePointer := reflect.New(responseType)
95
+
96
+ // Create a value that's a direct reference to the arg argument
97
+ argStructPointer := reflect.New(argsType)
98
+ argStruct := reflect.Indirect(argStructPointer)
99
+
100
+ // Unmarshall the argument json
101
+ // TODO: check for unmarshalling errors
102
+ unmarshallerValue.Call([]reflect.Value{methodArgsValue, argStructPointer})
103
+
104
+ // Call the method
105
+ // TODO: check for errors
106
+ method.Func.Call([]reflect.Value{structValue, argStruct, responseValuePointer})
107
+
108
+ // Set this method's response value
109
+ rpcResponse := reflect.Indirect(responseValuePointer)
110
+ functionResponse.Set(rpcResponse)
111
+
112
+ return nil
113
+ }
114
+
115
+ func (q *Quartz) GetMetadata(_ interface{}, value *map[string]*StructMetadata) error {
116
+ *value = q.Registry
117
+ return nil
118
+ }
119
+
120
+ func init() {
121
+ var err error
122
+ listener, err = net.Listen("unix", os.Getenv("QUARTZ_SOCKET"))
123
+ if err != nil {
124
+ panic(err)
125
+ }
126
+
127
+ quartz = &Quartz{}
128
+ quartz.Registry = make(map[string]*StructMetadata)
129
+
130
+ rpc.Register(quartz)
131
+
132
+ // Cleanup the socket file when the server is killed
133
+ sigc := make(chan os.Signal)
134
+ signal.Notify(sigc, os.Interrupt, os.Kill, syscall.SIGTERM)
135
+ go func() {
136
+ <-sigc
137
+ err := listener.Close()
138
+ if err != nil {
139
+ panic(err)
140
+ }
141
+ os.Exit(0)
142
+ }()
143
+ }
144
+
145
+ func Start() {
146
+ for {
147
+ conn, err := listener.Accept()
148
+ if err != nil {
149
+ panic(err)
150
+ }
151
+ go jsonrpc.ServeConn(conn)
152
+ }
153
+ }
@@ -0,0 +1,10 @@
1
+ require 'json'
2
+ require 'socket'
3
+
4
+ module Quartz
5
+
6
+ end
7
+
8
+ require 'quartz/go_process'
9
+ require 'quartz/go_struct'
10
+ require 'quartz/client'
@@ -0,0 +1,20 @@
1
+ class Quartz::Client
2
+
3
+ def initialize(go_process)
4
+ @process = go_process
5
+ @structs = {}
6
+
7
+ @process.get_metadata.each do |struct_name, metadata|
8
+ @structs[struct_name.to_sym] = Quartz::GoStruct.new(struct_name, metadata, @process)
9
+ end
10
+ end
11
+
12
+ def [](struct_name)
13
+ @structs[struct_name]
14
+ end
15
+
16
+ def structs
17
+ @structs.keys
18
+ end
19
+
20
+ end
@@ -0,0 +1,52 @@
1
+ class Quartz::GoProcess
2
+
3
+ def initialize(opts)
4
+ @socket_name = "/tmp/quartz#{rand(10000)}.sock"
5
+ ENV['QUARTZ_SOCKET'] = @socket_name
6
+
7
+ if opts[:file_path]
8
+ @go_process = Thread.new { `go run #{opts[:file_path]} }` }
9
+ elsif opts[:bin_path]
10
+ @go_process = Thread.new { `#{opts[:bin_path]} }` }
11
+ else
12
+ raise 'Missing go binary path'
13
+ end
14
+
15
+ sleep(1)
16
+
17
+ @socket = UNIXSocket.new(@socket_name)
18
+ end
19
+
20
+ def get_metadata
21
+ payload = {
22
+ 'method' => 'Quartz.GetMetadata',
23
+ 'params' => [],
24
+ 'id' => 1
25
+ }
26
+
27
+ @socket.send(payload.to_json, 0)
28
+ read
29
+ end
30
+
31
+ def call(struct_name, method, args)
32
+ payload = {
33
+ 'method' => 'Quartz.Call',
34
+ 'params' => [{
35
+ 'StructName' => struct_name,
36
+ 'Method' => method,
37
+ 'MethodArgs' => args.to_json
38
+ }],
39
+ 'id' => 1
40
+ }
41
+
42
+ @socket.send(payload.to_json, 0)
43
+ read
44
+ end
45
+
46
+ MAX_MESSAGE_SIZE = 1_000_000_000 # Bytes
47
+
48
+ def read
49
+ JSON(@socket.recv(MAX_MESSAGE_SIZE))['result']
50
+ end
51
+
52
+ end
@@ -0,0 +1,36 @@
1
+ class Quartz::GoStruct
2
+
3
+ attr_reader :struct_methods
4
+
5
+ def initialize(struct_name, method_info, process)
6
+ @struct_name = struct_name
7
+ @method_name_to_arg_info = {}
8
+ @process = process
9
+
10
+ method_info["NameToMethodMetadata"].each do |method_name, info|
11
+ @method_name_to_arg_info[method_name] = info["ArgumentToType"].keys()
12
+ end
13
+
14
+ @struct_methods = @method_name_to_arg_info.keys
15
+ end
16
+
17
+ def call(method_name, args)
18
+ unless @struct_methods.include?(method_name)
19
+ raise "Invalid method: #{method_name}"
20
+ end
21
+
22
+ arg_info = @method_name_to_arg_info[method_name]
23
+
24
+ # Validate arguments
25
+ args.each do |k, v|
26
+ unless arg_info.include?(k)
27
+ raise "Invalid argument: #{k}"
28
+ end
29
+
30
+ # TODO: validate type
31
+ end
32
+
33
+ @process.call(@struct_name, method_name, args)
34
+ end
35
+
36
+ end
@@ -0,0 +1,71 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+ # stub: quartz 0.0.1 ruby lib
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "quartz"
9
+ s.version = "0.0.1"
10
+
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
13
+ s.authors = ["David Huie"]
14
+ s.date = "2014-06-16"
15
+ s.description = "A gem for calling #golang code from ruby"
16
+ s.email = "dahuie@gmail.com"
17
+ s.extra_rdoc_files = [
18
+ "LICENSE.txt",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".rspec",
24
+ "Gemfile",
25
+ "Gemfile.lock",
26
+ "LICENSE.txt",
27
+ "README.rdoc",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "go/quartz/quartz.go",
31
+ "lib/quartz.rb",
32
+ "lib/quartz/client.rb",
33
+ "lib/quartz/go_process.rb",
34
+ "lib/quartz/go_struct.rb",
35
+ "quartz.gemspec",
36
+ "spec/client_spec.rb",
37
+ "spec/go_process_spec.rb",
38
+ "spec/go_struct_spec.rb",
39
+ "spec/spec_helper.rb",
40
+ "spec/test.go"
41
+ ]
42
+ s.homepage = "http://github.com/DavidHuie/quartz"
43
+ s.licenses = ["MIT"]
44
+ s.rubygems_version = "2.2.2"
45
+ s.summary = "A gem for calling #golang code from ruby"
46
+
47
+ if s.respond_to? :specification_version then
48
+ s.specification_version = 4
49
+
50
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
51
+ s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
52
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
53
+ s.add_development_dependency(%q<bundler>, ["~> 1.0"])
54
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
55
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
56
+ else
57
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
58
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
59
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
60
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
61
+ s.add_dependency(%q<simplecov>, [">= 0"])
62
+ end
63
+ else
64
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
65
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
66
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
67
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
68
+ s.add_dependency(%q<simplecov>, [">= 0"])
69
+ end
70
+ end
71
+
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Quartz::Client do
4
+
5
+ let(:process) { Quartz::GoProcess.new(file_path: 'spec/test.go') }
6
+
7
+ it 'creates structs internally' do
8
+ c = Quartz::Client.new process
9
+ result = c[:adder].call('Add', 'A' => 2, 'B' => 5)
10
+ result.should eq({'X' => 7})
11
+ end
12
+
13
+ end
@@ -0,0 +1,28 @@
1
+ require 'spec_helper'
2
+
3
+ describe Quartz::GoProcess do
4
+
5
+ let(:process) { Quartz::GoProcess.new(file_path: 'spec/test.go') }
6
+
7
+ describe '#get_metadata' do
8
+
9
+ context 'with a go file' do
10
+
11
+ it 'pulls metadata' do
12
+ process.get_metadata.should eq({"adder"=>{"NameToMethodMetadata"=>{"Add"=>{"ArgumentToType"=>{"A"=>"int", "B"=>"int"}}}}})
13
+ end
14
+
15
+ end
16
+
17
+ end
18
+
19
+ describe '#call' do
20
+
21
+ it 'is able to call a method on a struct' do
22
+ result = process.call('adder', 'Add', { 'A' => 5, 'B' => 6 })
23
+ result.should eq({"X"=>11})
24
+ end
25
+
26
+ end
27
+
28
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ describe Quartz::GoStruct do
4
+
5
+ let(:process) { Quartz::GoProcess.new(file_path: 'spec/test.go') }
6
+
7
+ describe '#call' do
8
+
9
+ let(:struct) do
10
+ Quartz::GoStruct.new("adder",
11
+ {"NameToMethodMetadata"=>{"Add"=>{"ArgumentToType"=>{"A"=>"int", "B"=>"int"}}}}, process)
12
+ end
13
+
14
+ it 'is able to call a struct' do
15
+ response = struct.call('Add', 'A' => 2, 'B' => 4)
16
+ response.should eq({'X' => 6})
17
+ end
18
+
19
+ end
20
+
21
+ end
@@ -0,0 +1,29 @@
1
+ require 'simplecov'
2
+
3
+ module SimpleCov::Configuration
4
+ def clean_filters
5
+ @filters = []
6
+ end
7
+ end
8
+
9
+ SimpleCov.configure do
10
+ clean_filters
11
+ load_adapter 'test_frameworks'
12
+ end
13
+
14
+ ENV["COVERAGE"] && SimpleCov.start do
15
+ add_filter "/.rvm/"
16
+ end
17
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
18
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
19
+
20
+ require 'rspec'
21
+ require 'quartz'
22
+
23
+ # Requires supporting files with custom matchers and macros, etc,
24
+ # in ./support/ and its subdirectories.
25
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
26
+
27
+ RSpec.configure do |config|
28
+
29
+ end
@@ -0,0 +1,27 @@
1
+ package main
2
+
3
+ import (
4
+ "github.com/DavidHuie/quartz/go/quartz"
5
+ )
6
+
7
+ type Test struct{}
8
+
9
+ type Args struct {
10
+ A int
11
+ B int
12
+ }
13
+
14
+ type Response struct {
15
+ X int
16
+ }
17
+
18
+ func (t *Test) Add(args Args, response *Response) error {
19
+ *response = Response{args.A + args.B}
20
+ return nil
21
+ }
22
+
23
+ func main() {
24
+ a := &Test{}
25
+ quartz.RegisterName("adder", a)
26
+ quartz.Start()
27
+ }
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quartz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Huie
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-16 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: 2.8.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.8.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '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: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jeweler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.0.1
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 2.0.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: 'A gem for calling #golang code from ruby'
84
+ email: dahuie@gmail.com
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files:
88
+ - LICENSE.txt
89
+ - README.rdoc
90
+ files:
91
+ - ".document"
92
+ - ".rspec"
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.rdoc
97
+ - Rakefile
98
+ - VERSION
99
+ - go/quartz/quartz.go
100
+ - lib/quartz.rb
101
+ - lib/quartz/client.rb
102
+ - lib/quartz/go_process.rb
103
+ - lib/quartz/go_struct.rb
104
+ - quartz.gemspec
105
+ - spec/client_spec.rb
106
+ - spec/go_process_spec.rb
107
+ - spec/go_struct_spec.rb
108
+ - spec/spec_helper.rb
109
+ - spec/test.go
110
+ homepage: http://github.com/DavidHuie/quartz
111
+ licenses:
112
+ - MIT
113
+ metadata: {}
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ requirements: []
129
+ rubyforge_project:
130
+ rubygems_version: 2.2.2
131
+ signing_key:
132
+ specification_version: 4
133
+ summary: 'A gem for calling #golang code from ruby'
134
+ test_files: []