iron_worker 2.3.14 → 2.3.15

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.
@@ -5,6 +5,11 @@ Getting Started
5
5
 
6
6
  [1]: http://www.iron.io/
7
7
 
8
+ **NOTE**: The next generation IronWorker gem, `iron_worker_ng` is at: https://github.com/iron-io/iron_worker_ruby_ng.
9
+ We recommend using that one going forward. This one still works, but we'll be putting most of our effort into the new
10
+ one. It also includes our new IronWorker command line interface (CLI) which is... awesome. ;) You can [read more about
11
+ that here](http://blog.iron.io/2012/05/new-ironworker-command-line-interface.html).
12
+
8
13
  Install IronWorker Gem
9
14
  ------------------------
10
15
 
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 2
3
3
  :minor: 3
4
- :patch: 14
4
+ :patch: 15
5
5
  :build: !!null
@@ -223,8 +223,12 @@ require 'json'
223
223
 
224
224
  # require merged gems
225
225
  merged_gems.each_pair do |k, gem|
226
- IronWorker.logger.debug "Bundling gem #{gem[:name]}..."
227
226
  f.write "$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/gems/#{gem[:name]}/lib'))\n"
227
+ end
228
+
229
+ merged_gems.each_pair do |k, gem|
230
+ IronWorker.logger.debug "Bundling gem #{gem[:name]}..."
231
+ #f.write "$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/gems/#{gem[:name]}/lib'))\n"
228
232
  next if gem[:bypass_require]
229
233
  IronWorker.logger.debug 'writing requires: ' + gem[:require].inspect
230
234
  if gem[:require].nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iron_worker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.14
4
+ version: 2.3.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-25 00:00:00.000000000 Z
12
+ date: 2012-07-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: zip
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  version: '0'
184
184
  requirements: []
185
185
  rubyforge_project:
186
- rubygems_version: 1.8.21
186
+ rubygems_version: 1.8.24
187
187
  signing_key:
188
188
  specification_version: 3
189
189
  summary: The official IronWorker gem for IronWorker by Iron.io. http://www.iron.io