alfred_git 0.1.0 → 0.1.2
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/alfred_git/version.rb +1 -1
- data/lib/alfred_git.rb +4 -4
- data/pkg/alfred_git-0.1.1.gem +0 -0
- metadata +3 -2
- /data/{alfred.gemspec → alfred_git.gemspec} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc0c606a2911a8b71ee338e61e6fba942befab70
|
|
4
|
+
data.tar.gz: c56dbb7f1855994c9175f06ebbb1b03e59c3fe33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e98442753b94a49abda22733dd15d73655c39edaac0564fac0b6cb8c8647c495c48d1d9e8bcbbba43da03aaffaba76eb4f9fd2088a4f3627c5fb2a6eae45084a
|
|
7
|
+
data.tar.gz: 0b49e1ea02cb04fb2ced37be285e59eadb3f2045a68afc04445fbd21de12cbe40b4116ff1a2a152c31d45de2fa6ab57ae87d57cc95d5f76ae7fa69b575edb2b4
|
data/lib/alfred_git/version.rb
CHANGED
data/lib/alfred_git.rb
CHANGED
|
@@ -32,7 +32,7 @@ module AlfredGit
|
|
|
32
32
|
|
|
33
33
|
case @arguments[0]
|
|
34
34
|
when nil, ''
|
|
35
|
-
lines_pretty_print Rainbow(
|
|
35
|
+
lines_pretty_print Rainbow("I need a command to run, Master #{@name}.").red
|
|
36
36
|
|
|
37
37
|
abort
|
|
38
38
|
when 'pull'
|
|
@@ -44,7 +44,7 @@ module AlfredGit
|
|
|
44
44
|
when 'checkout'
|
|
45
45
|
if second_argument_missing?
|
|
46
46
|
lines_pretty_print Rainbow('I need a branch name to execute the \'checkout\' command, Master '\
|
|
47
|
-
|
|
47
|
+
"#{@name}.").red
|
|
48
48
|
|
|
49
49
|
abort
|
|
50
50
|
end
|
|
@@ -56,7 +56,7 @@ module AlfredGit
|
|
|
56
56
|
when 'commit'
|
|
57
57
|
if second_argument_missing?
|
|
58
58
|
lines_pretty_print Rainbow('I need a commit message to execute the \'commit\' command, Master '\
|
|
59
|
-
|
|
59
|
+
"#{@name}.").red
|
|
60
60
|
|
|
61
61
|
abort
|
|
62
62
|
end
|
|
@@ -79,7 +79,7 @@ module AlfredGit
|
|
|
79
79
|
# All other arguments are deleted before we get here, so this should be just the repo list.
|
|
80
80
|
def repos_string_to_array
|
|
81
81
|
if @arguments[0].nil?|| @arguments[0] == ''
|
|
82
|
-
lines_pretty_print Rainbow(
|
|
82
|
+
lines_pretty_print Rainbow("I need at least one repository to work with, Master #{@name}.").red
|
|
83
83
|
|
|
84
84
|
abort
|
|
85
85
|
elsif @arguments[0] == 'all'
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alfred_git
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Sellek
|
|
@@ -65,12 +65,13 @@ files:
|
|
|
65
65
|
- LICENSE
|
|
66
66
|
- README.md
|
|
67
67
|
- Rakefile.rb
|
|
68
|
-
-
|
|
68
|
+
- alfred_git.gemspec
|
|
69
69
|
- bin/alfred_git
|
|
70
70
|
- bin/console
|
|
71
71
|
- bin/setup
|
|
72
72
|
- lib/alfred_git.rb
|
|
73
73
|
- lib/alfred_git/version.rb
|
|
74
|
+
- pkg/alfred_git-0.1.1.gem
|
|
74
75
|
homepage: https://github.com/iamsellek/alfred_git
|
|
75
76
|
licenses:
|
|
76
77
|
- MIT
|
|
File without changes
|