lift_off 0.1.15 → 0.1.16
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.
- data/bin/lift_off +8 -6
- data/lib/lift_off/version.rb +1 -1
- metadata +1 -1
data/bin/lift_off
CHANGED
|
@@ -56,15 +56,17 @@ def establish_new_git_repo
|
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
pa "Cloning the Repo...", :blue
|
|
60
60
|
clone_repo
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
pa "Repository Cloned.", :blue
|
|
62
|
+
pa "=" * 18, :green
|
|
63
|
+
pa ""
|
|
63
64
|
|
|
64
|
-
|
|
65
|
+
pa "Renaming Flight Plan's folder to #{underscore(new_name)}", :blue
|
|
65
66
|
rename_root_folder(new_name)
|
|
66
|
-
|
|
67
|
-
|
|
67
|
+
pa "Rename Complete.", :blue
|
|
68
|
+
pa "=" * 16, :green
|
|
69
|
+
pa ""
|
|
68
70
|
|
|
69
71
|
Dir.chdir "#{underscore(new_name)}" do
|
|
70
72
|
other_files = [".rvmrc", "config.ru", "Rakefile"].select {|other| File.exists?(other) }
|
data/lib/lift_off/version.rb
CHANGED