storm 0.0.1
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.
- data/Gemfile +4 -0
- data/lib/storm.rb +12 -0
- data/lib/storm/thrift/distributed_r_p_c.rb +91 -0
- data/lib/storm/thrift/distributed_r_p_c_invocations.rb +188 -0
- data/lib/storm/thrift/nimbus.rb +960 -0
- data/lib/storm/thrift/storm_constants.rb +8 -0
- data/lib/storm/thrift/storm_types.rb +801 -0
- data/lib/storm/version.rb +5 -0
- data/storm-client.gemspec +17 -0
- metadata +76 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/storm/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Michael Montano"]
|
6
|
+
gem.email = ["mm@twitter.com"]
|
7
|
+
gem.description = 'Ruby Storm client'
|
8
|
+
gem.summary = 'Generated thrift bindings for storm.thrift'
|
9
|
+
gem.homepage = ""
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "storm"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Storm::VERSION
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: storm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Michael Montano
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-09-20 00:00:00 -07:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: Ruby Storm client
|
23
|
+
email:
|
24
|
+
- mm@twitter.com
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- Gemfile
|
33
|
+
- lib/storm.rb
|
34
|
+
- lib/storm/thrift/distributed_r_p_c.rb
|
35
|
+
- lib/storm/thrift/distributed_r_p_c_invocations.rb
|
36
|
+
- lib/storm/thrift/nimbus.rb
|
37
|
+
- lib/storm/thrift/storm_constants.rb
|
38
|
+
- lib/storm/thrift/storm_types.rb
|
39
|
+
- lib/storm/version.rb
|
40
|
+
- storm-client.gemspec
|
41
|
+
has_rdoc: true
|
42
|
+
homepage: ""
|
43
|
+
licenses: []
|
44
|
+
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
hash: 3
|
56
|
+
segments:
|
57
|
+
- 0
|
58
|
+
version: "0"
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
hash: 3
|
65
|
+
segments:
|
66
|
+
- 0
|
67
|
+
version: "0"
|
68
|
+
requirements: []
|
69
|
+
|
70
|
+
rubyforge_project:
|
71
|
+
rubygems_version: 1.6.2
|
72
|
+
signing_key:
|
73
|
+
specification_version: 3
|
74
|
+
summary: Generated thrift bindings for storm.thrift
|
75
|
+
test_files: []
|
76
|
+
|