-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.0.0.beta1 and brand new website
- Loading branch information
1 parent
0f66a7e
commit 32e455b
Showing
264 changed files
with
5,273 additions
and
7,922 deletions.
There are no files selected for viewing
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
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,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
module Bridgetown | ||
VERSION = "1.0.0.alpha11" | ||
VERSION = "1.0.0.beta1" | ||
CODE_NAME = "Pearl" | ||
end |
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,7 +1,33 @@ | ||
# Bridgetown | ||
output | ||
node_modules | ||
.sass-cache | ||
.bridgetown-cache | ||
.bridgetown-metadata | ||
.bridgetown-webpack | ||
|
||
# Dependency folders | ||
node_modules | ||
vendor | ||
|
||
# Caches | ||
.npm | ||
.node_repl_history | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# Mac files | ||
.DS_Store | ||
|
||
# Yarn | ||
yarn-error.log | ||
yarn-debug.log* | ||
.pnp/ | ||
.pnp.js | ||
# Yarn Integrity file | ||
.yarn-integrity |
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,2 +1,3 @@ | ||
src/_components/post_card.serb | ||
src/_docs/components.md | ||
src/_docs/components/liquid.md |
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 @@ | ||
3.0.3 |
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,28 +1,18 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
gem "bridgetown", path: "../bridgetown" | ||
gem "bridgetown-builder", path: "../bridgetown-builder" | ||
gem "bridgetown-core", path: "../bridgetown-core" | ||
gem "bridgetown-paginate", path: "../bridgetown-paginate" | ||
|
||
group :bridgetown_plugins do | ||
gem "bridgetown-feed", "~> 2.1" | ||
gem "bridgetown-quick-search", "~> 1.1" | ||
gem "bridgetown-seo-tag", "~> 5.0" | ||
gem "bridgetown-svg-inliner", "~> 1.0" | ||
end | ||
gem "puma", "~> 5.5" | ||
|
||
group :test, optional: true do | ||
gem "minitest" | ||
gem "minitest-profile" | ||
gem "minitest-reporters" | ||
gem "nokogiri" | ||
gem "rails-dom-testing" | ||
gem "shoulda" | ||
end | ||
gem "bridgetown-feed", "~> 2.1", group: :bridgetown_plugins | ||
gem "bridgetown-quick-search", "~> 1.1", group: :bridgetown_plugins | ||
gem "bridgetown-seo-tag", "~> 5.0", group: :bridgetown_plugins | ||
gem "bridgetown-svg-inliner", "~> 1.0", group: :bridgetown_plugins | ||
|
||
gem "puma", "~> 5.5" | ||
# required by @ruby2js/webpack-loader | ||
gem "ruby2js", "~> 4.2" | ||
gem "gems", "~> 1.2" |
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,3 @@ | ||
# New 2021 Website for Bridgetown | ||
|
||
TODO: build and launch a new website for Bridgetown! =) |
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
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,7 +1,7 @@ | ||
# frozen_string_literal: true | ||
# This file is used by Rack-based servers during the Bridgetown boot process. | ||
|
||
require "bridgetown-core/rack/boot" | ||
|
||
Bridgetown::Rack.boot | ||
|
||
run RodaApp.freeze.app | ||
run RodaApp.freeze.app # see server/roda_app.rb |
Oops, something went wrong.