-
-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This drops some of the dynamic features but: - I no longer want to pay for DigitalOcean out of my own pocket. - Workbrew's Bootstrap feature does everything better than Strap does at this point.
- Loading branch information
1 parent
6fb6a8a
commit b3eb3c6
Showing
25 changed files
with
883 additions
and
891 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
/.env | ||
/.bundle/ | ||
/.vagrant/ | ||
/bin/* | ||
!/bin/strap.sh | ||
/bin/ | ||
/vendor/ | ||
Vagrantfile | ||
strap.sh | ||
/_site/ | ||
/Gemfile.lock | ||
/.jekyll-metadata |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
strap.mikemcquaid.com |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby file: ".ruby-version" | ||
|
||
gem "activesupport" | ||
gem "faraday-retry" | ||
gem "octokit" | ||
gem "omniauth-github" | ||
gem "puma" | ||
gem "sinatra" | ||
gem "github-pages", group: :jekyll_plugins | ||
|
||
group :development do | ||
gem "guard" | ||
gem "guard-process" | ||
gem "rubocop" | ||
gem "webrick" | ||
end | ||
|
||
group :test do | ||
gem "html-proofer" | ||
gem "rake" | ||
end |
Oops, something went wrong.