simplews 1.6.0 → 1.6.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.
Files changed (2) hide show
  1. data/lib/rake_pipeline.rb +1 -3
  2. metadata +1 -1
@@ -63,7 +63,7 @@ module Rake::Pipeline
63
63
  def parse_filename(filename)
64
64
  filename.match(/^(.*?)([^\/]*)\/([^\/]*)$/)
65
65
  {
66
- :prefix => $1,
66
+ :prefix => $1 == "" ? "." : $1,
67
67
  :step => $2,
68
68
  :job => $3,
69
69
  }
@@ -184,8 +184,6 @@ module Rake::Pipeline
184
184
  else
185
185
  # Add values to the info file
186
186
  def info(values = {})
187
- puts "Using rake info"
188
-
189
187
  info = Rake::Pipeline::Info.load_info(@@current_task)
190
188
  info = info.merge values
191
189
  Rake::Pipeline::Info.save_info(@@current_task, info)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplews
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez