kuy 0.2.0 → 0.2.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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/README.md +8 -2
  4. data/bin/kuy +1 -1
  5. data/kuy.gemspec +1 -1
  6. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31dc3a147035a7536f85ba12934d780032873e9cb9ea5fc2b292498ebba46daf
4
- data.tar.gz: 6d2c979e4cea89c40b16f3466038255262c8a230fe207b3b4a923a15ed2e1a53
3
+ metadata.gz: fd4991ff3548766bd0d6592db7b8c667def25a04105faeb0e2d53ef150416eda
4
+ data.tar.gz: 7bb06e82ceddf84d935c1c4432e9e401664dde8d5c65e863832e8523fc4fc5ad
5
5
  SHA512:
6
- metadata.gz: c11c55e94edf7d6f85c3c34ca4129165274404dfa521519c4783bf1101d93fff83c6eb63ce38344d5a9cef8b393894ddd6b1bbe67ef44a04a476319066fe78fb
7
- data.tar.gz: a484040c7a8bc4d361af26fc0ea9d4beb4bd7eb1958849b325fc9a9ac8c7cac0cd611e9595402190eee0a8e7d9c22ed07632534b15679fce4438d975dee363f2
6
+ metadata.gz: 00f8ddcf5b28902c7235bb6469dc99384e3647fcd3f728e399f416b2f7a7baa84f269e952dcf71a6aef1671360039e45b6875523c77d35f6f1396991d707ac70
7
+ data.tar.gz: cbb232b5b03f0e55be80658422ec2d0b9e8a6b4b8d1ff9f2fe730d1e4b97d01760301273630cc9b0b82c949ba0c9b2b6046f68bb42065d79b26c13ae791f47d5
@@ -1,3 +1,6 @@
1
+ 0.2.1:
2
+ * Update README and fix kuy command
3
+
1
4
  0.2.0:
2
5
  * Show information when git is not available
3
6
  * kuy command accepts first argument as branch name
data/README.md CHANGED
@@ -20,13 +20,19 @@ brew gem install kuy
20
20
  ## How to Use
21
21
  Run `kuy` or `kuymaster` command in your git feature branch.
22
22
 
23
- Suppose you have a branch named `my-feature-branch` and you want to pull `develop` branch and merge into `my-feature-branch`.
23
+ Suppose you have a branch named `my-feature-branch` and you want to pull `origin/develop` branch and merge into `my-feature-branch`.
24
24
  ```sh
25
25
  git checkout my-feature-branch
26
26
  kuy
27
27
  ```
28
28
 
29
- Or if you want to pull `master` branch and merge into `my-feature-branch`.
29
+ Or if you want to pull `origin/example` branch and merge into `my-feature-branch`.
30
+ ```sh
31
+ git checkout my-feature-branch
32
+ kuy example
33
+ ```
34
+
35
+ Or if you want to pull `origin/master` branch and merge into `my-feature-branch`.
30
36
  ```sh
31
37
  git checkout my-feature-branch
32
38
  kuymaster
data/bin/kuy CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  require 'kuy'
4
4
  branch = ARGV.empty? ? :develop : ARGV.first
5
- Kuy.pull_and_merge_from(:branch)
5
+ Kuy.pull_and_merge_from(branch)
@@ -2,7 +2,7 @@ require 'date'
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'kuy'
5
- s.version = '0.2.0'
5
+ s.version = '0.2.1'
6
6
  s.date = Date.today.to_s
7
7
  s.summary = 'Kuy is a Ruby gem to simplify git feature branch workflow if you want to pull and merge your develop or master branch'
8
8
  s.description = 'Kuy is a Ruby gem to simplify git feature branch workflow if you want to pull and merge your develop or master branch'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kunto Aji Kristianto