fgi 1.1.2 → 1.1.3
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/lib/fgi.rb +1 -1
- data/lib/fgi/git_service.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1891f28f5ddf8fb90c595b3ae58293bcd00651bb
|
|
4
|
+
data.tar.gz: 8d17307b6f8edadf84b85cbb5b408816423b2a58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 690c3ec932312ea33b690f4bd44aa62a2fd0aaca29def6ca4465a912c70d2dff8d09cc231acf6feade769d743382c7eb63b0c8cdfa8e214494c155aeb1c92cee
|
|
7
|
+
data.tar.gz: d6e096772f58333bd418c88dd8b316a2d34738951dfbddbd538e613e881ed464eef85958f2a23326daa8939756ca5753d5d5933dfea41b4f6b0b0585bd76b94f
|
data/lib/fgi.rb
CHANGED
|
@@ -14,7 +14,7 @@ module Fgi
|
|
|
14
14
|
require_relative 'fgi/configuration'
|
|
15
15
|
require_relative 'fgi/git_service'
|
|
16
16
|
|
|
17
|
-
VERSION = '1.1.
|
|
17
|
+
VERSION = '1.1.3'.freeze
|
|
18
18
|
|
|
19
19
|
# Add FGI user's current issues to the gitignore
|
|
20
20
|
if `cat .gitignore | grep '.current_issues.fgi.yml'`.empty?
|
data/lib/fgi/git_service.rb
CHANGED
|
@@ -174,6 +174,7 @@ module Fgi
|
|
|
174
174
|
from = `git branch | grep '*'`.gsub('* ', '').chomp
|
|
175
175
|
`git pull #{git_remote} HEAD` # Be sure to get the remote changes locally.
|
|
176
176
|
`git checkout -b #{name}` # Create the new branch.
|
|
177
|
+
`git branch -u #{git_remote}/#{name}` # Define the upstream branch
|
|
177
178
|
to = `git branch | grep '*'`.gsub('* ', '').chomp
|
|
178
179
|
puts "\nYou are now working on branch #{to} created from #{from} !"
|
|
179
180
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fgi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julien Philibin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-10-
|
|
12
|
+
date: 2017-10-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|