Commit 18d2d8a3f4402f407da4e1eb0d9e2ec67b2e8897
1 parent
04da01b4
Exists in
master
and in
1 other branch
install clearance during create_project
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
script/create_project
@@ -97,7 +97,13 @@ run("sudo chmod 0666 log/test.log") | @@ -97,7 +97,13 @@ run("sudo chmod 0666 log/test.log") | ||
97 | run("sudo touch log/cucumber.log") | 97 | run("sudo touch log/cucumber.log") |
98 | run("sudo chmod 0666 log/cucumber.log") | 98 | run("sudo chmod 0666 log/cucumber.log") |
99 | 99 | ||
100 | +run("script/generate clearance") | ||
100 | run("rake db:migrate RAILS_ENV=development") | 101 | run("rake db:migrate RAILS_ENV=development") |
102 | +run("script/generate clearance_features") | ||
103 | +run("script/generate clearance_views") | ||
104 | +run("git add .") | ||
105 | +run("git commit -m 'installed clearance'") | ||
106 | + | ||
101 | run("rake db:migrate RAILS_ENV=test") | 107 | run("rake db:migrate RAILS_ENV=test") |
102 | run("rake db:migrate RAILS_ENV=cucumber") | 108 | run("rake db:migrate RAILS_ENV=cucumber") |
103 | 109 |