We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5694431 commit 0ef8a7eCopy full SHA for 0ef8a7e
2 files changed
Makefile
@@ -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