simple_workflow 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ == 0.0.5 2012-01-05
2
+
3
+ === Fixes
4
+
5
+ * Fixed wrong target in with_detour
6
+
7
+
1
8
  == 0.0.4 2012-01-05
2
9
 
3
10
  === Fixes
@@ -14,7 +14,7 @@ module SimpleWorkflow::Helper
14
14
  if options.is_a? String
15
15
  return options + (options =~ /\?/ ? '&' : '?') + detour_options[:detour].map{|k,v| "detour[#{k}]=#{v}"}.join('&')
16
16
  else
17
- detour_options.merge(options)
17
+ detour_options.update(options)
18
18
  if options[:layout] == false
19
19
  if params[:action] !~ /_no_layout$/
20
20
  detour_options[:detour].update({:action => params[:action] + '_no_layout'})
@@ -1,3 +1,3 @@
1
1
  module SimpleWorkflow
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_workflow
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Uwe Kubosch