-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from bangkokrb/release/4.0.0
- Loading branch information
Showing
226 changed files
with
8,925 additions
and
22,359 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,38 @@ | ||
*.gem | ||
*.rbc | ||
/.config | ||
/coverage/ | ||
/InstalledFiles | ||
/pkg/ | ||
/spec/reports/ | ||
/spec/examples.txt | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
.idea/ | ||
.DS_Store | ||
# Bridgetown | ||
output | ||
.bridgetown-cache | ||
.bridgetown-metadata | ||
.bridgetown-webpack | ||
|
||
# Dependency folders | ||
node_modules | ||
bower_components | ||
|
||
# Caches | ||
.sass-cache | ||
.npm | ||
.node_repl_history | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
|
||
## Documentation cache and generated files: | ||
/.yardoc/ | ||
/_yardoc/ | ||
/doc/ | ||
/rdoc/ | ||
|
||
## Environment normalization: | ||
/.bundle/ | ||
/vendor/bundle | ||
/lib/bundler/man/ | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# Gemfile.lock | ||
# .ruby-version | ||
# .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# Jekyll specific | ||
.jekyll-cache/ | ||
.jekyll-metadata | ||
.sass-cache/ | ||
_site/ | ||
|
||
# JS | ||
node_modules/ | ||
|
||
# Webpack compiled files | ||
assets/javascript/*.js | ||
assets/javascript/*.js.map | ||
assets/javascript/*sprite* | ||
|
||
# Deployment | ||
# dotenv environment variables file | ||
.env | ||
|
||
# Mac files | ||
.DS_Store | ||
|
||
# Yarn | ||
yarn-error.log | ||
yarn-debug.log* | ||
.pnp/ | ||
.pnp.js | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# Git Submodules | ||
src/past |
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,3 +1,3 @@ | ||
[submodule "past/2019"] | ||
path = past/2019 | ||
[submodule "src/past/2019"] | ||
path = src/past/2019 | ||
url = https://github.com/bangkokrb/rubyconfth-2019.git |
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,15 +1,24 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '3.1.1' | ||
|
||
gem 'jekyll' # Static site generator | ||
# If you need to upgrade/switch Bridgetown versions, change the line below | ||
# and then run `bundle update bridgetown` | ||
gem "bridgetown", "~> 1.1.0" | ||
|
||
group :development, :test do | ||
gem 'rake' # A make-like build utility for Ruby. Required to run tests. | ||
gem 'dotenv' # A Ruby gem to load environment variables from `.env` | ||
gem 'foreman' # Manage Procfile-based applications | ||
gem "webrick" # Ruby Web server | ||
end | ||
# Uncomment to add file-based dynamic routing to your project: | ||
# gem "bridgetown-routes", "~> 1.1.0", group: :bridgetown_plugins | ||
|
||
# Uncomment to use the Inspectors API to manipulate the output | ||
# of your HTML or XML resources: | ||
# gem "nokogiri", "~> 1.13" | ||
|
||
# Puma is a Rack-compatible server used by Bridgetown | ||
# (you can optionally limit this to the "development" group) | ||
gem "puma", "~> 5.6" | ||
|
||
group :test do | ||
gem 'html-proofer'# Test rendered HTML files to make sure they are accurate | ||
# Test rendered HTML files to make sure they are accurate | ||
gem 'html-proofer' | ||
end |
Oops, something went wrong.