Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rspec-steps (2.1.1)
rspec-steps (2.1.2)
rspec (>= 3.0, < 3.99)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.0.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-steps (2.1.1)
rspec-steps (2.1.2)
rspec (>= 3.0, < 3.99)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.1.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-steps (2.1.1)
rspec-steps (2.1.2)
rspec (>= 3.0, < 3.99)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.2.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-steps (2.1.1)
rspec-steps (2.1.2)
rspec (>= 3.0, < 3.99)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.3.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-steps (2.1.1)
rspec-steps (2.1.2)
rspec (>= 3.0, < 3.99)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec-steps/dsl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def shared_steps(*args, &block)
name = args.first
raise "shared step lists need a String for a name" unless name.is_a? String
raise "there is already a step list named #{name}" if SharedSteps.has_key?(name)
SharedSteps[name] = Describer.new(*args, {:caller => caller}, &block)
SharedSteps[name] = Describer.new(args, {:caller => caller}, &block)
end
end
extend DSL
Expand Down
2 changes: 1 addition & 1 deletion rspec-steps.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "rspec-steps"
spec.version = "2.1.1"
spec.version = "2.1.2"
author_list = {
"Judson Lester" => "[email protected]",
"Evan Dorn" => "[email protected]"
Expand Down