about summary refs log tree commit diff stats
path: root/assets
Commit message (Expand)AuthorAgeFilesLines
* Added real pilgrimage detectionStar Rauchenberger2024-02-262-45/+4
* Added sunwarp access supportStar Rauchenberger2024-01-311-0/+18
* Handle Color Hunt changesStar Rauchenberger2024-01-212-1/+3
* Areas changes for Symmetry RoomStar Rauchenberger2024-01-211-2/+6
* Handle renamed bearer entranceStar Rauchenberger2024-01-191-1/+1
* Area info from renamesStar Rauchenberger2024-01-191-2/+14
* Main Door is no longer needed for pilgrimage because it no longer existsStar Rauchenberger2023-11-041-2/+0
* Folded in new cross tower areasStar Rauchenberger2023-09-071-0/+8
* Panelsanity supportStar Rauchenberger2023-08-251-0/+132
* Fixed fake pilgrimageStar Rauchenberger2023-08-081-0/+8
* Add Orange Tower BasementStar Rauchenberger2023-06-181-0/+2
* The Bold and The Red no longer overlapStar Rauchenberger2023-05-091-2/+2
* Detect fake pilgrimageStar Rauchenberger2023-05-061-0/+21
* Added support for variable THE MASTERStar Rauchenberger2023-05-051-0/+2
* It's called The Wanderer nowStar Rauchenberger2023-05-051-1/+1
* Map + popups reflect checked locationsStar Rauchenberger2023-05-022-0/+0
* Added areas to mapStar Rauchenberger2023-05-021-0/+129
* Added map backgroundStar Rauchenberger2023-05-011-0/+0
span class="o">.expand_path("..", __dir__) def system!(*args) system(*args) || abort("\n== Command #{args} failed ==") end FileUtils.chdir APP_ROOT do # This script is a way to set up or update your development environment automatically. # This script is idempotent, so that you can run it at any time and get an expectable outcome. # Add necessary setup steps to this file. puts "== Installing dependencies ==" system! "gem install bundler --conservative" system("bundle check") || system!("bundle install") # puts "\n== Copying sample files ==" # unless File.exist?("config/database.yml") # FileUtils.cp "config/database.yml.sample", "config/database.yml" # end puts "\n== Preparing database ==" system! "bin/rails db:prepare" puts "\n== Removing old logs and tempfiles ==" system! "bin/rails log:clear tmp:clear" puts "\n== Restarting application server ==" system! "bin/rails restart" end