whirlwind 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.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ === 0.1.1 / 2011-10-22
2
+ * Fix bug in html_image formatter for adding alt to next and prev images
3
+ to have a means for accessing correct features images within the JS
1
4
  === 0.1.0 / 2011-10-22
2
5
 
3
6
  * 1 major enhancement
@@ -124,8 +124,8 @@ module Cucumber
124
124
  end
125
125
  @builder << "<img id='result_image_#{ct}' class='hidden' alt='#{i[:label]}' src='#{i[:src]}'>"
126
126
  }
127
- @builder << "<img id='prev_img' src='#{@demo_site_path}/public/images/arrow_left_48.png'>"
128
- @builder << "<img id='next_img' src='#{@demo_site_path}/public/images/arrow_right_48.png'>"
127
+ @builder << "<img id='prev_img' alt='#{res}' src='#{@demo_site_path}/public/images/arrow_left_48.png'>"
128
+ @builder << "<img id='next_img' alt='#{res}' src='#{@demo_site_path}/public/images/arrow_right_48.png'>"
129
129
  @builder << "</div>"
130
130
  @builder << "</center>"
131
131
  end
data/lib/whirlwind.rb CHANGED
@@ -35,5 +35,5 @@ end
35
35
 
36
36
  class Whirlwind
37
37
  include RSpec::Core::DSL
38
- VERSION = '0.1.0'
38
+ VERSION = '0.1.1'
39
39
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: whirlwind
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Cliff Cyphers