wukong-deploy 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -11,7 +11,7 @@ best-of-breed technologies like [Hadoop](http://hadoop.apache.org/),
11
11
  for accessing these powerful tools.
12
12
 
13
13
  Computation, analytics, scripting, &c. are all handled by
14
- [Wukong](http://github.com/infochimps-labs/wukong) within the
14
+ [Wukong](http://github.com/infochimps-labs/wukong/tree/3.0.0) within the
15
15
  platform. Wukong is an abstract framework for defining computations
16
16
  on data. Wukong processors and flows can run in many different
17
17
  execution contexts including:
@@ -26,8 +26,9 @@ The deploy pack can be thought of as a container for all the necessary
26
26
  Wukong code and plugins useful in the context of an Infochimps
27
27
  Platform application. It includes the following libraries:
28
28
 
29
- * <a href="http://github.com/infochimps-labs/wukong">wukong</a>: The core framework for writing processors and chaining them together.
30
29
  * <a href="http://github.com/infochimps-labs/wukong-hadoop">wukong-hadoop</a>: Run Wukong processors as mappers and reducers within the Hadoop framework. Model Hadoop jobs locally before you run them.
30
+ * <a href="http://github.com/infochimps-labs/wukong-storm">wukong-storm</a>: Run Wukong processors within the Storm framework. Model flows locally before you run them.
31
+ * <a href="http://github.com/infochimps-labs/wukong-load">wukong-load</a>: Load the output data from your local Wukong jobs and flows into a variety of different data stores.
31
32
  * <a href="http://github.com/infochimps-labs/wonderdog">wonderdog</a>: Connect Wukong processors running within Hadoop to Elasticsearch as either a source or sink for data.
32
33
 
33
34
  ## Installation
@@ -1,7 +1,5 @@
1
1
  module Wukong
2
2
  module Deploy
3
-
4
- # The current version of this deploy pack framework.
5
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
6
4
  end
7
5
  end
@@ -35,7 +35,7 @@ Gem::Specification.new do |gem|
35
35
  gem.test_files = gem.files.grep(/^spec/)
36
36
  gem.require_paths = ['lib']
37
37
 
38
- gem.add_dependency('wukong', '3.0.0')
38
+ gem.add_dependency('wukong', '3.0.1')
39
39
  gem.add_dependency('rake', '~> 0.9')
40
40
  gem.add_dependency('erubis')
41
41
  gem.add_dependency('diffy')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wukong-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2013-02-22 00:00:00.000000000 Z
14
+ date: 2013-03-07 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: wukong
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - '='
22
22
  - !ruby/object:Gem::Version
23
- version: 3.0.0
23
+ version: 3.0.1
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - '='
30
30
  - !ruby/object:Gem::Version
31
- version: 3.0.0
31
+ version: 3.0.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: rake
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -148,15 +148,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
148
148
  - - ! '>='
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
+ segments:
152
+ - 0
153
+ hash: 687970152159308186
151
154
  required_rubygems_version: !ruby/object:Gem::Requirement
152
155
  none: false
153
156
  requirements:
154
157
  - - ! '>='
155
158
  - !ruby/object:Gem::Version
156
159
  version: '0'
160
+ segments:
161
+ - 0
162
+ hash: 687970152159308186
157
163
  requirements: []
158
164
  rubyforge_project:
159
- rubygems_version: 1.8.23
165
+ rubygems_version: 1.8.24
160
166
  signing_key:
161
167
  specification_version: 3
162
168
  summary: Defines the deploy pack framework used by the Infochimps Platform