lift_off 0.1.3 → 0.1.4
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 +2 -2
- data/lib/lift_off/version.rb +1 -1
- metadata +1 -1
data/bin/lift_off
CHANGED
@@ -43,7 +43,7 @@ def remove_git_repo
|
|
43
43
|
`rm -rf .git`
|
44
44
|
end
|
45
45
|
|
46
|
-
def rename_root_folder
|
46
|
+
def rename_root_folder(new_name)
|
47
47
|
File.rename './flight_plan', "./#{underscore(new_name)}"
|
48
48
|
end
|
49
49
|
|
@@ -60,7 +60,7 @@ p "Sweet!!!"
|
|
60
60
|
p "=" * 100
|
61
61
|
|
62
62
|
p "Renaming the root folder now"
|
63
|
-
rename_root_folder
|
63
|
+
rename_root_folder(new_name)
|
64
64
|
p "Done!"
|
65
65
|
p "=" * 100
|
66
66
|
|
data/lib/lift_off/version.rb
CHANGED