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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dce123c7d6166cefd6244bc774b76e67aa4d991d
4
- data.tar.gz: 0e6dcfc4ee6ae9ea9e82d6b06e150515081482f2
3
+ metadata.gz: cf745205b78150bbcbe1238a62b27d5b0a7a38e4
4
+ data.tar.gz: 34b23fa06cebeb010aa0a9215202c62561a19c33
5
5
  SHA512:
6
- metadata.gz: 016b3f677539db5b50ffb5f9b096b423b12236b65c0ce6138ccb61b812dcfe183284ad46484d7e4263520874777e0f05c534206471b01c0e7abe221f8587e749
7
- data.tar.gz: 4291759dd73cc05c59d5fa3e45958eb96a6d4498ae584fe0e836b7aafa334d46d9cf8d895859ece5a6c5b980dbdfa4353a812957a32207175698180659ef0f18
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('../../../../bin/ora-selecta', __FILE__)
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
@@ -1,5 +1,5 @@
1
1
  module Ora
2
2
  module Cli
3
- VERSION = "0.2.6"
3
+ VERSION = "0.2.7"
4
4
  end
5
5
  end
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.6
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-05 00:00:00.000000000 Z
11
+ date: 2017-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler