alfred_git 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 127a29a45aeb9d4c99b537dd79b6b54fa042c51c
4
- data.tar.gz: 0d201b61f4e64c304331a8bb7318164bb9ab1b33
3
+ metadata.gz: dc0c606a2911a8b71ee338e61e6fba942befab70
4
+ data.tar.gz: c56dbb7f1855994c9175f06ebbb1b03e59c3fe33
5
5
  SHA512:
6
- metadata.gz: c873b2eeb4c41ef0acc08a33a862e6c64150dee0cc0a4f93799cc2e6e4cbb40ab580792c1d736b8a9b1a15376f2e842a5ddeead3dac380d6a4ac268f518f478e
7
- data.tar.gz: 302ae66c3c6157cb4fc4692d9a6cf38c74358f2ee92a70fbfef4fd725f8a092580b055657d14b5c7674f39e117c5c7bdd96a9bcc8bc80006265f49301a0bcbf2
6
+ metadata.gz: e98442753b94a49abda22733dd15d73655c39edaac0564fac0b6cb8c8647c495c48d1d9e8bcbbba43da03aaffaba76eb4f9fd2088a4f3627c5fb2a6eae45084a
7
+ data.tar.gz: 0b49e1ea02cb04fb2ced37be285e59eadb3f2045a68afc04445fbd21de12cbe40b4116ff1a2a152c31d45de2fa6ab57ae87d57cc95d5f76ae7fa69b575edb2b4
@@ -1,3 +1,3 @@
1
1
  module AlfredGit
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.2"
3
3
  end
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('I need a command to run, Master Wayne.').red
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
- 'Wayne.').red
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
- 'Wayne.').red
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('I need at least one repository to work with, Master Wayne.').red
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.0
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
- - alfred.gemspec
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