ora-cli 0.1.0 → 0.1.1
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 +15 -21
- data/lib/ora/cli/version.rb +1 -1
- data/ora-cli.gemspec +2 -2
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0999aeed5d2b3b3a83a27ad3d73dbb0d9a1ec9a9
|
|
4
|
+
data.tar.gz: 455ca3feaf1eeb236cc64c8b06b1b45414a60f3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c351d3ecfa355006f740e9c4be06971e96677a518c52519c8f93f0477c5474ab095c9fc91efb7fa01d3d611fea940b8611ab2eb31a89837e6bccfdff968d301
|
|
7
|
+
data.tar.gz: e3c5c9c97b49220bac325b52b1b63d22b4b15e6e272373fe4c5de5a509c021712df2b93f1410e093994db15fc07d04cc26ba96676186f3255f8a3abfefbfe8dd
|
data/README.md
CHANGED
|
@@ -1,36 +1,30 @@
|
|
|
1
1
|
# Ora::Cli
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
A command line tool to automate development workflow in ORA
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
9
|
-
Add this line to your application's Gemfile:
|
|
10
|
-
|
|
11
|
-
```ruby
|
|
12
|
-
gem 'ora-cli'
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
And then execute:
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
7
|
$ gem install ora-cli
|
|
22
8
|
|
|
23
9
|
## Usage
|
|
24
10
|
|
|
25
|
-
|
|
11
|
+
$ ora
|
|
26
12
|
|
|
27
|
-
|
|
13
|
+
1. Run `ora` command at the project folder
|
|
14
|
+
2. Fuzzy search (using [selecta](https://github.com/garybernhardt/selecta)) the task you want to run and type enter.
|
|
28
15
|
|
|
29
|
-
|
|
16
|
+
## Tasks
|
|
30
17
|
|
|
31
|
-
|
|
18
|
+
`new_feature_branch`: Help to create a new branch from up-to-date develop branch
|
|
19
|
+
|
|
20
|
+
`push_feature_branch`: Help to push your feature branch to remote ready for pull request
|
|
21
|
+
|
|
22
|
+
`push_to_staging`: Help to push your feature branch to staging
|
|
23
|
+
|
|
24
|
+
`push_to_uat`: Help to push your feature branch to uat
|
|
25
|
+
|
|
26
|
+
`push_to_master`: Help to push your feature branch to develop and master branches with a version tag
|
|
32
27
|
|
|
33
28
|
## Contributing
|
|
34
29
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
36
|
-
|
|
30
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ducktyper/ora-cli.
|
data/lib/ora/cli/version.rb
CHANGED
data/ora-cli.gemspec
CHANGED
|
@@ -14,8 +14,8 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "https://orahq.com"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
|
-
spec.bindir = "
|
|
18
|
-
spec.executables =
|
|
17
|
+
spec.bindir = "bin"
|
|
18
|
+
spec.executables = ["ora"]
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.12"
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ora-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ducksan Cho
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2016-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -55,7 +55,8 @@ dependencies:
|
|
|
55
55
|
description: ORA CLI
|
|
56
56
|
email:
|
|
57
57
|
- ducktyper@gmail.com
|
|
58
|
-
executables:
|
|
58
|
+
executables:
|
|
59
|
+
- ora
|
|
59
60
|
extensions: []
|
|
60
61
|
extra_rdoc_files: []
|
|
61
62
|
files:
|