aruba-jbb 0.2.6.4 → 0.2.6.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,6 @@
1
+ == 0.2.6.5 jbb
2
+ * removed lib/aruba-jbb.rb file
3
+
1
4
  == 0.2.6.4 jbb
2
5
  * Fix for ruby 1.9.2 change in handling StandardError objects as strings
3
6
 
data/README.rdoc CHANGED
@@ -26,7 +26,7 @@ Note that aruba-jbb and aruba cannot co-exist in the same project in any
26
26
  case so that I have left the library name the same as upstream. This
27
27
  permits switching between the two in Bundler without having to alter env.rb
28
28
  as well. However, as of v-0.2.6.3 you have the option of requiring
29
- aruba-jbb instead.
29
+ <tt>aruba_jbb</tt> instead.
30
30
 
31
31
  You now have a bunch of step definitions that you can use in your features.
32
32
  Look at aruba/cucumber_steps.rb to see all the step definitions. Look at
data/aruba-jbb.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{aruba-jbb}
5
- s.version = "0.2.6.4"
5
+ s.version = "0.2.6.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Aslak Hellesøy", "David Chelimsky", "James B. Byrne"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba-jbb
3
3
  version: !ruby/object:Gem::Version
4
- hash: 79
4
+ hash: 77
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
9
  - 6
10
- - 4
11
- version: 0.2.6.4
10
+ - 5
11
+ version: 0.2.6.5
12
12
  platform: ruby
13
13
  authors:
14
14
  - "Aslak Helles\xC3\xB8y"
@@ -97,7 +97,6 @@ files:
97
97
  - features/output.feature
98
98
  - features/step_definitions/aruba_dev_steps.rb
99
99
  - features/support/env.rb
100
- - lib/aruba-jbb.rb
101
100
  - lib/aruba.rb
102
101
  - lib/aruba/api.rb
103
102
  - lib/aruba/aruba_extension_steps.rb
data/lib/aruba-jbb.rb DELETED
@@ -1,3 +0,0 @@
1
- require 'pathname'
2
- lib_path = Pathname.new(File.dirname(__FILE__)).realpath.to_s + '/'
3
- require lib_path + 'aruba/cucumber_steps'