Skip to content
Draft
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
14 changes: 8 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global

# Ignore bundler config
/.bundle
/vendor/bundle

# Ignore the build directory
/build
Expand All @@ -21,3 +16,10 @@
.idea/
.idea/*
/source/images/*

# Node modules
node_modules/
package-lock.json

# Tailwind output
/source/stylesheets/output.css
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.1
3.2.3
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# If you do not have OpenSSL installed, update
# the following line to use "http://" instead
source 'https://rubygems.org'
ruby '2.5.1'
ruby '3.2.3'

gem 'middleman', '~>3.3.12'
gem 'middleman', '~> 4.5'

# Live-reloading plugin
# gem 'middleman-livereload', '~> 3.1.0'
Expand All @@ -14,14 +14,15 @@ gem 'middleman-meta-tags'
gem 'middleman-search_engine_sitemap'
gem 'neat', '~> 1.7.2'

gem 'middleman-dotenv', '~> 1.0'
gem 'middleman-deploy', '~> 1.0'
gem 'haml', '~> 4.0', '>= 4.0.7'
gem 'middleman-dotenv', '~> 2.0'
# gem 'middleman-deploy', '~> 1.0' # Incompatible with Middleman 4+
gem 'haml', '~> 6.0'
gem 'puma'
gem 'net-ftp' # Required for Ruby 3+

# security updates
gem 'ffi', '~> 1.9.24'
gem 'sprockets', '~> 2.12.5'
gem 'ffi', '>= 1.15.0'
gem 'sprockets', '>= 3.7.2'


group :development, :test do
Expand Down
Loading