mafia 0.0.6 → 0.0.7

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.
Files changed (3) hide show
  1. data/lib/mafia.rb +7 -7
  2. data/lib/version.rb +1 -1
  3. metadata +3 -3
@@ -83,20 +83,20 @@ module Mafia
83
83
  end
84
84
  end
85
85
 
86
- def run_bundle_command
86
+ def initalize_git_repo
87
87
  target = File.join(Dir.pwd, name)
88
- say "\n\nRunning Bundler", :yellow
88
+ say "\n\nInitializating git repo in #{target}", :yellow
89
89
  Dir.chdir(target) {
90
- run "bundle install", :verbose => false
90
+ run "git init", :verbose => false
91
+ run "git add .", :verbose => false
91
92
  }
92
93
  end
93
94
 
94
- def initalize_git_repo
95
+ def run_bundle_command
95
96
  target = File.join(Dir.pwd, name)
96
- say "\n\nInitializating git repo in #{target}", :yellow
97
+ say "\n\nRunning Bundler", :yellow
97
98
  Dir.chdir(target) {
98
- run "git init", :verbose => false
99
- run "git add .", :verbose => false
99
+ run "bundle install", :verbose => false
100
100
  }
101
101
  end
102
102
 
@@ -1,3 +1,3 @@
1
1
  module Mafia
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mafia
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - George Drummond