Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bake/utopia.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ def environment(name: nil)
def development
self.environment

exec("guard", "-g", "development")
exec("falcon", "serve")
end
4 changes: 2 additions & 2 deletions bake/utopia/site.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def initialize(...)
SETUP_ROOT = File.expand_path("../../setup", __dir__)

# Configuration files which should be installed/updated:
CONFIGURATION_FILES = [".gitignore", "config.ru", "config/environment.rb", "falcon.rb", "gems.rb", "Guardfile", "bake.rb", "test/website.rb", "fixtures/website.rb"]
CONFIGURATION_FILES = [".gitignore", "config.ru", "config/environment.rb", "falcon.rb", "gems.rb", "bake.rb", "test/website.rb", "fixtures/website.rb"]

# Directories that should exist:
DIRECTORIES = ["config", "lib", "pages", "public", "bake", "fixtures", "test"]

# Directories that should be removed during upgrade process:
OLD_PATHS = ["access_log", "cache", "tmp", "Rakefile", "tasks", ".bowerrc"]
OLD_PATHS = ["access_log", "cache", "tmp", "Rakefile", "tasks", ".bowerrc", "Guardfile"]

# The root directory of the template site:
SITE_ROOT = File.join(SETUP_ROOT, "site")
Expand Down
2 changes: 0 additions & 2 deletions gems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,5 @@

gem "benchmark-ips"

gem "guard-falcon"

gem "rack-test"
end
12 changes: 0 additions & 12 deletions setup/site/Guardfile

This file was deleted.

1 change: 0 additions & 1 deletion setup/site/gems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
group :development do
gem "bake-test"
gem "rack-test"
gem "guard-falcon", require: false

gem "sus"
gem "sus-fixtures-async-http"
Expand Down
3 changes: 0 additions & 3 deletions setup/site/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ To start the development server, simply execute
> bake
Generating transient session key for development...
20:57:36 - INFO - Starting Falcon HTTP server on localhost:9292
20:57:36 - INFO - Guard::RSpec is running
20:57:36 - INFO - Guard is now watching at '...'
[1] guard(main)>

Then browse https://localhost:9292 (or as specified) to see your new site.
Loading