-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
executable file
·93 lines (76 loc) · 1.94 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/env bash
ORIGINAL_REPO='git://github.com/TinkerDev/rails4_template.git'
usage()
{
printf "%b" "
Запуск
./bootstrap <ИМЯ_ПРОЕКТА> --git <git_repo>
"
}
set_name()
{
name=$1
if echo $name | grep -e '^[A-Z]' > /dev/null; then
echo "Название проекта: $name"
elif [ -z "$name" ]; then
usage
exit 2
else
echo "Проект должен называться с заглавной буквы, $name не подходит."
exit 4
fi
}
set_name $1
shift
while (( $# > 0 ))
do
token="$1"
shift
case "$token" in
--git)
git=$1
echo "Кину проект в репозтоирий: $git"
shift
;;
help|usage)
usage
exit 0
;;
*)
usage
exit 12
;;
esac
done
if [ -n "$name" ]; then
lc_name=`echo $name | tr '[A-Z]' '[a-z]'`
dest=$lc_name
echo "Создаю проект в каталоге $dest"
if git clone --depth 1 --branch master $ORIGINAL_REPO $dest && cd $dest; then
rm -rf .git
echo "Именую проект"
perl -i -p -e "s/Rails4Template/$name/g" */**/*.rb **/*.rb **/*.yml Rakefile
echo "Устанавливаю настройки базы"
perl -i -p -e "s/ttt/$lc_name/g" ./config/database.yml*
cp ./config/database.yml.example ./config/database.yml
pwd | grep -v rails4_template | rm ./bootstrap.sh # Самоуничтажаемся
bundle
CURRENTDIR=${PWD#*/}
echo "Continue..."
git init
git add .
git commit -m "first commit"
if [ -n "$git" ]; then
echo "Добавлять remote origin: $git"
git remote add origin $git
else
GITHUBUSER='TinkerDev'
echo "Добавь репозиторий после создания: git remote add origin [email protected]:${GITHUBUSER}/${dest}.git"
fi
else
echo "Ощутил проблемы при клонировании шаблона"
fi
else
usage
exit 2
fi