23 lines
556 B
Ruby
23 lines
556 B
Ruby
# If you do not have OpenSSL installed, update
|
|
# the following line to use "http://" instead
|
|
source 'https://rubygems.org'
|
|
|
|
gem "middleman", "~>3.4.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]
|
|
|
|
# Windows does not come with time zone data
|
|
gem "tzinfo-data", platforms: [:mswin, :mingw, :jruby]
|
|
|
|
gem 'bootstrap-sass', require: false
|
|
gem 'jquery-middleman'
|
|
gem 'sass'
|
|
gem 'bourbon'
|
|
gem 'haml'
|
|
gem 'coffee-script'
|
|
|
|
gem 'middleman-deploy' |