9 lines
153 B
Plaintext
9 lines
153 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# Usage: script/gem
|
||
|
# Updates the gemspec and builds a new gem in the pkg directory.
|
||
|
|
||
|
mkdir -p pkg
|
||
|
gem build *.gemspec
|
||
|
mv *.gem pkg
|
||
|
|