alpha_omega 1.1.5 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/bin/alpha_omega +0 -2
- data/libexec/build +30 -0
- metadata +2 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.6
|
data/bin/alpha_omega
CHANGED
data/libexec/build
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
#/ NAME
|
4
|
+
#/ build-gem -- upload the latest (timestamp) rubygem to rubygems.org
|
5
|
+
#/
|
6
|
+
#/ SYNOPSIS
|
7
|
+
#/ build gem -n gem_name
|
8
|
+
|
9
|
+
# figure out the project root under which bin, lib live
|
10
|
+
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"
|
11
|
+
|
12
|
+
# load a jason bourne library
|
13
|
+
source "$shome/bin/_treadstone"
|
14
|
+
|
15
|
+
# define command line options:
|
16
|
+
DEFINE_string 'name' "$(basename "$shome")" 'name of gem' 'n'
|
17
|
+
|
18
|
+
# entry point
|
19
|
+
function main {
|
20
|
+
local pth_gemspec="$shome/$FLAGS_name.gemspec"
|
21
|
+
if [[ ! -e "$pth_gemspec" ]]; then
|
22
|
+
logger_fatal "could not find gemspec $pth_gemspec"
|
23
|
+
exit 1
|
24
|
+
fi
|
25
|
+
|
26
|
+
cd "$shome"
|
27
|
+
gem build "$pth_gemspec"
|
28
|
+
}
|
29
|
+
|
30
|
+
require sub "$BASH_SOURCE" "$@"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alpha_omega
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -122,6 +122,7 @@ files:
|
|
122
122
|
- libexec/ao-stage
|
123
123
|
- libexec/ao-task
|
124
124
|
- libexec/ao-unlock
|
125
|
+
- libexec/build
|
125
126
|
- libexec/build-gem
|
126
127
|
- libexec/bump
|
127
128
|
- libexec/edit-gem
|