ninny 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/ninny/commands/pull_request_merge.rb +2 -0
- data/lib/ninny/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df20c749d0ff68d76160dd8c49af839c0d5bca44b2bc843c6869c54847d6cd2a
|
4
|
+
data.tar.gz: fd04479d94849368b53d539ad1f3084e024c90d4a89d879787213dc5fd5de9a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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-
|
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
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.
|
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-
|
11
|
+
date: 2021-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|