Move the forms to a partial (had a hard time with HAML-based partials...) Small box-shadow if not specified Add a "I'm the owner of that website" checkbox
17 lines
408 B
Ruby
17 lines
408 B
Ruby
# Ruby Gems for building and testing Bootstrap
|
|
# Run `grunt update-gemfile-lock` to update to the latest compatible versions
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
group :development, :test do
|
|
gem 'jekyll', '< 3'
|
|
gem 'jekyll-haml'
|
|
gem 'rouge'
|
|
gem 'sass'
|
|
gem 'guard'
|
|
gem 'nokogiri'
|
|
gem 'jekyll-contentblocks'
|
|
gem 'guard-jekyll-plus'
|
|
gem 'guard-livereload'
|
|
gem 'guard-bundler', require: false
|
|
end
|