mrtoolkit 0.1.2 → 0.1.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.
data/VERSION.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 2
4
+ :patch: 3
5
+ :build:
data/lib/stream_runner.rb CHANGED
@@ -25,7 +25,7 @@ streaming_version = ENV['HADOOP_STREAMING_VERSION']
25
25
  streaming_version ="0.20.0" unless streaming_version
26
26
 
27
27
  HADOOP_HOME=ENV['HADOOP_HOME']
28
- HADOOP_STREAMING="#{HADOOP_HOME}/contrib/streaming/hadoop-#{streaming_version}-streaming.jar"
28
+ HADOOP_STREAMING=Dir.glob("#{HADOOP_HOME}/contrib/streaming/hadoop*streaming.jar").find{|f| f.include?(streaming_version)}
29
29
 
30
30
  class StreamRunner
31
31
  def expand_path(file)
data/mrtoolkit.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mrtoolkit}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["cchayden", "vadimj", "jashmenn"]
12
- s.date = %q{2010-05-17}
12
+ s.date = %q{2011-05-13}
13
13
  s.email = %q{nate@natemurray.com}
14
14
  s.extra_rdoc_files = [
15
15
  "README.rdoc"
@@ -52,7 +52,7 @@ Gem::Specification.new do |s|
52
52
  s.homepage = %q{http://github.com/jashmenn/mrtoolkit}
53
53
  s.rdoc_options = ["--charset=UTF-8"]
54
54
  s.require_paths = ["lib"]
55
- s.rubygems_version = %q{1.3.6}
55
+ s.rubygems_version = %q{1.3.7}
56
56
  s.summary = %q{Simplify the creation of Hadoop Map/Reduce jobs}
57
57
  s.test_files = [
58
58
  "test/utest.rb",
@@ -70,7 +70,7 @@ Gem::Specification.new do |s|
70
70
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
71
71
  s.specification_version = 3
72
72
 
73
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
73
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
74
74
  else
75
75
  end
76
76
  else
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mrtoolkit
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 29
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 1
8
- - 2
9
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
10
11
  platform: ruby
11
12
  authors:
12
13
  - cchayden
@@ -16,7 +17,7 @@ autorequire:
16
17
  bindir: bin
17
18
  cert_chain: []
18
19
 
19
- date: 2010-05-17 00:00:00 -07:00
20
+ date: 2011-05-13 00:00:00 -07:00
20
21
  default_executable:
21
22
  dependencies: []
22
23
 
@@ -72,23 +73,27 @@ rdoc_options:
72
73
  require_paths:
73
74
  - lib
74
75
  required_ruby_version: !ruby/object:Gem::Requirement
76
+ none: false
75
77
  requirements:
76
78
  - - ">="
77
79
  - !ruby/object:Gem::Version
80
+ hash: 3
78
81
  segments:
79
82
  - 0
80
83
  version: "0"
81
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
+ none: false
82
86
  requirements:
83
87
  - - ">="
84
88
  - !ruby/object:Gem::Version
89
+ hash: 3
85
90
  segments:
86
91
  - 0
87
92
  version: "0"
88
93
  requirements: []
89
94
 
90
95
  rubyforge_project:
91
- rubygems_version: 1.3.6
96
+ rubygems_version: 1.3.7
92
97
  signing_key:
93
98
  specification_version: 3
94
99
  summary: Simplify the creation of Hadoop Map/Reduce jobs