alox 0.0.4 → 0.0.5
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/README.md +3 -9
- data/VERSION +1 -1
- data/bin/alox +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,15 +1,9 @@
|
|
1
1
|
# Getting Started
|
2
2
|
|
3
|
-
The `alox`
|
3
|
+
The `alox` demo uses a few alox gems. Requires a ruby and bundler:
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
bundle exec --local --path vendor/bundle --standalone
|
8
|
-
|
9
|
-
Then run `bin/alox` with `BUNDLE_GEMFILE` set, as if `bundle exec` was
|
10
|
-
run:
|
11
|
-
|
12
|
-
env BUNDLE_GEMFILE="$(pwd)/Gemfile" bin/alox
|
5
|
+
cd demo
|
6
|
+
make
|
13
7
|
|
14
8
|
LICENSE
|
15
9
|
-------
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/bin/alox
CHANGED
@@ -9,7 +9,7 @@ aloxes = ($:.collect {|lib| lib.match(%r{(.*?/alox-([^-]+)-[^/]+)/lib}) }).compa
|
|
9
9
|
|
10
10
|
ENV['PATH'] = aloxes.inject(ENV['PATH']) {|acc, alox|
|
11
11
|
_, root = alox
|
12
|
-
"#{root}/aloxbin:#{root}/aloxec:#{
|
12
|
+
"#{root}/aloxbin:#{root}/aloxec:#{acc}"
|
13
13
|
}
|
14
14
|
|
15
15
|
if ARGV.length > 0
|