Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip gems in RSpec integration #56

Merged
merged 1 commit into from
Feb 27, 2023
Merged
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
1 change: 1 addition & 0 deletions lib/packs/rails/integrations/rspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def initialize
# to the collection of directories to run.

pack_paths = Packs.all.map do |pack|
next if pack.is_gem?
spec_path = pack.relative_path.join(default_path)
spec_path.to_s if spec_path.exist?
end
Expand Down
2 changes: 1 addition & 1 deletion lib/packs/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Packs
module Rails
VERSION = "0.0.2".freeze
VERSION = "0.0.3".freeze
end
end