Skip to content
Open
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.3-jessie
- image: circleci/ruby:2.6.3-node
steps:
- checkout
- run:
name: 'Middleman build'
command: make build
name: 'Middleman deploy'
command: make deploy

workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.1
2.6.3
27 changes: 9 additions & 18 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
source 'https://rubygems.org'

# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
gem 'middleman', '~> 4.2'
gem 'middleman-autoprefixer', '~> 2.7'
gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby]
gem 'wdm', '~> 0.1', platforms: [:mswin, :mingw]

gem "middleman", "~>3.2.0"

# Live-reloading plugin
gem "middleman-livereload", "~> 3.1.0"

# For faster file watcher updates on Windows:
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw, :x64_mingw]

gem 'middleman-s3_sync', '~> 3'
gem 'mime-types'
gem 'middleman-cloudfront', '~> 0.2.1'

gem "haml"
gem 'middleman-s3_sync'

gem 'middleman-cloudfront', '~> 0.3.0'
gem "slack-notifier"

gem "rake"

gem "compass"
# gem 'sassc', '~> 2.0', '>= 2.0.1'
# gem "compass"
Loading