ninny 0.1.11 → 0.1.12

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
  SHA256:
3
- metadata.gz: cbd94550d42dd1d2280ae1838482dc22f67ec5abaea0abacdf57feccc6fedc23
4
- data.tar.gz: 5801551978e1805825178d2544f3bd94554bf944f1e095b35f8448a7ed9e1ad5
3
+ metadata.gz: df20c749d0ff68d76160dd8c49af839c0d5bca44b2bc843c6869c54847d6cd2a
4
+ data.tar.gz: fd04479d94849368b53d539ad1f3084e024c90d4a89d879787213dc5fd5de9a9
5
5
  SHA512:
6
- metadata.gz: 53df5cd87f9193a26bb0976bf4bf0efbcb10a1e2c4e6c6cc25a1381ae11ad69f8279f60fcc05848f0127e19982d08a7505f2c7e49b9b62a785af957a6a717b11
7
- data.tar.gz: a9534c205c2f24cab166a80795e11038040afa0bac73592da8af8d4762a1bd820224d39b1a85fb7930b5c1e637d6f24ce9d3c0e6032ca7d78c7aba3a6c014a38
6
+ metadata.gz: 7882708a164cfc52316f496f26c7203458d39c996d155a67b5fc8afedb58a9b9d60a9b44badc97ba4860815c497017ac1e47cc7dcbdd4fd89b24e4d9e3e7162c
7
+ data.tar.gz: 954e986c09b28bc6ce678fb7a88ff04f872f212ce71c8637699342eb683229b28286ba50dc32b9523ca43dbee59cece29e9ad06546fe27f600712b479a70fd3b
data/README.md CHANGED
@@ -83,7 +83,7 @@ At any point, `ninny help` will show the help screen.
83
83
  * Run `bundle exec guard` to run tests continuously as you develop
84
84
  6. Test the gem locally
85
85
  * Run `gem build *.gemspec` to build the gem locally
86
- * Run `gem install --local ninny-x.x.x.gem` to install the gem locally
86
+ * Run `gem install --local ninny-X.X.X.gem` to install the gem locally
87
87
  7. Make a pull request back to this repository
88
88
 
89
89
  ### Releasing
@@ -35,6 +35,7 @@ module Ninny
35
35
 
36
36
  # Public: Check out the branch
37
37
  def check_out_branch
38
+ prompt.say "Checking out #{branch_to_merge_into}."
38
39
  Ninny.git.check_out(branch_to_merge_into, false)
39
40
  Ninny.git.track_current_branch
40
41
  rescue Ninny::Git::NoBranchOfType
@@ -44,6 +45,7 @@ module Ninny
44
45
 
45
46
  # Public: Merge the pull request's branch into the checked-out branch
46
47
  def merge_pull_request
48
+ prompt.say "Merging #{pull_request.branch} to #{branch_to_merge_into}."
47
49
  Ninny.git.merge(pull_request.branch)
48
50
  end
49
51
 
data/lib/ninny/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ninny
4
- VERSION = '0.1.11'
4
+ VERSION = '0.1.12'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ninny
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dispatch Engineers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-02 00:00:00.000000000 Z
11
+ date: 2021-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: git