wukong-load 0.1.0 → 0.1.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.
@@ -48,7 +48,7 @@ module Wukong
48
48
  def setup
49
49
  begin
50
50
  require 'kafka'
51
- rescue => e
51
+ rescue LoadError => e
52
52
  raise Error.new("Please ensure that the 'kafka-rb' gem is installed and available (in your Gemfile)")
53
53
  end
54
54
  log.debug("Connecting to Kafka broker at #{host}:#{port}...")
@@ -58,7 +58,7 @@ module Wukong
58
58
  def setup
59
59
  begin
60
60
  require 'mongo'
61
- rescue => e
61
+ rescue LoadError => e
62
62
  raise Error.new("Please ensure that the 'mongo' gem is installed and available (in your Gemfile)")
63
63
  end
64
64
  h = host.gsub(%r{^http://},'')
@@ -60,7 +60,7 @@ module Wukong
60
60
  def setup
61
61
  begin
62
62
  require 'mysql2'
63
- rescue => e
63
+ rescue LoadError => e
64
64
  raise Error.new("Please ensure that the 'mysql2' gem is installed and available (in your Gemfile)")
65
65
  end
66
66
  log.debug("Connecting to SQL server at <#{host}:#{port}> as <#{username}>#{' using password' if password}...")
@@ -1,6 +1,5 @@
1
1
  module Wukong
2
2
  module Load
3
- # The current version of Wukong-Load
4
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
5
4
  end
6
5
  end
@@ -27,5 +27,5 @@ EOF
27
27
  gem.test_files = gem.files.grep(/^spec/)
28
28
  gem.require_paths = ['lib']
29
29
 
30
- gem.add_dependency('wukong', '3.0.0')
30
+ gem.add_dependency('wukong', '3.0.1')
31
31
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wukong-load
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:
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2013-02-20 00:00:00.000000000 Z
15
+ date: 2013-03-07 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: wukong
@@ -21,7 +21,7 @@ dependencies:
21
21
  requirements:
22
22
  - - '='
23
23
  - !ruby/object:Gem::Version
24
- version: 3.0.0
24
+ version: 3.0.1
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 3.0.0
32
+ version: 3.0.1
33
33
  description: ! " Lets you load data from the command-line into data stores like\n\n
34
34
  \ * Elasticsearch\n * MongoDB\n * HBase\n * MySQL\n * Kafka\n\nand others.\n"
35
35
  email: coders@infochimps.com
@@ -78,15 +78,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
78
78
  - - ! '>='
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
+ segments:
82
+ - 0
83
+ hash: -4302418444763726699
81
84
  required_rubygems_version: !ruby/object:Gem::Requirement
82
85
  none: false
83
86
  requirements:
84
87
  - - ! '>='
85
88
  - !ruby/object:Gem::Version
86
89
  version: '0'
90
+ segments:
91
+ - 0
92
+ hash: -4302418444763726699
87
93
  requirements: []
88
94
  rubyforge_project:
89
- rubygems_version: 1.8.23
95
+ rubygems_version: 1.8.24
90
96
  signing_key:
91
97
  specification_version: 3
92
98
  summary: Load data produced by Wukong processors and dataflows into data stores.