Skip to content

Commit 0ef8a7e

Browse files
committed
README
1 parent 5694431 commit 0ef8a7e

2 files changed

Lines changed: 735 additions & 0 deletions

File tree

Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Install the gem locally
2+
install: build
3+
@echo "Installing featurevisor gem..."
4+
gem install featurevisor-*.gem
5+
@echo "Installation complete!"
6+
7+
# Build the gem package
8+
build:
9+
@echo "Building featurevisor gem..."
10+
gem build featurevisor.gemspec
11+
@echo "Build complete! Created: featurevisor-*.gem"
12+
13+
# Run the test suite
14+
test:
15+
@echo "Running tests..."
16+
bundle exec rspec spec/
17+
@echo "Tests completed!"
18+
19+
# Clean up build artifacts
20+
clean:
21+
@echo "Cleaning up build artifacts..."
22+
rm -f featurevisor-*.gem
23+
@echo "Cleanup complete!"

0 commit comments

Comments
 (0)