ora-cli 0.2.6 → 0.2.7
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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/ora/cli/path.rb +6 -1
- data/lib/ora/cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf745205b78150bbcbe1238a62b27d5b0a7a38e4
|
|
4
|
+
data.tar.gz: 34b23fa06cebeb010aa0a9215202c62561a19c33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5eeae2d3a756e12850e014c68a6784313873c696feeba993efa7441a5425ad05f7c6cfaa9f8b7ad2a354516420ff493722ffce2bb9c328bf1dfe877b9e03c827
|
|
7
|
+
data.tar.gz: 78422682df717d9e41cdd1dcbef03c705cdb0a34bfeff932022c60fb078d81696c275413e5fc10c33416ad08efbdb5515bcdbc1cafa4f68f0ae8e5cd96dc12b5
|
data/README.md
CHANGED
|
@@ -18,6 +18,7 @@ A command line tool to automate development workflow in ORA
|
|
|
18
18
|
|
|
19
19
|
1. Run `ora` command at the project folder
|
|
20
20
|
2. Fuzzy search (using [selecta](https://github.com/garybernhardt/selecta)) the task you want to run and type enter.
|
|
21
|
+
3. Create ~/bin/selecta to use custom version of selecta
|
|
21
22
|
|
|
22
23
|
## Tasks
|
|
23
24
|
|
data/lib/ora/cli/path.rb
CHANGED
|
@@ -5,7 +5,12 @@ module Ora::Cli
|
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def self.selecta
|
|
8
|
-
File.expand_path('
|
|
8
|
+
path = File.expand_path('~/bin/selecta', __FILE__)
|
|
9
|
+
if File.exists? path
|
|
10
|
+
path
|
|
11
|
+
else
|
|
12
|
+
File.expand_path('../../../../bin/ora-selecta', __FILE__)
|
|
13
|
+
end
|
|
9
14
|
end
|
|
10
15
|
end
|
|
11
16
|
end
|
data/lib/ora/cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ora-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ducksan Cho
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|