Skip to content
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
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
PATH
remote: .
specs:
featurevisor (0.3.0)
featurevisor (1.0.0)
benchmark

GEM
remote: https://rubygems.org/
specs:
benchmark (0.4.0)
diff-lcs (1.6.2)
rake (13.3.0)
rspec (3.13.1)
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install build test setup-monorepo update-monorepo
.PHONY: install build test test-example-1 setup-monorepo update-monorepo

install:
bundle install
Expand All @@ -9,6 +9,10 @@ build:
test:
bundle exec rspec spec/

test-example-1:
bundle exec rspec spec/
bundle exec ruby bin/featurevisor test --projectDirectoryPath=../featurevisor/examples/example-1 --onlyFailures

setup-monorepo:
mkdir -p monorepo
if [ ! -d "monorepo/.git" ]; then \
Expand Down
Loading
Loading