From 8be22dc988b39ad846d493b7a52115acac2a7d50 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Tue, 27 Sep 2016 10:25:00 +0530 Subject: [PATCH] add a post-install msg to gemspec --- minima.gemspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/minima.gemspec b/minima.gemspec index b696e552a7..d619ca6d27 100644 --- a/minima.gemspec +++ b/minima.gemspec @@ -19,6 +19,22 @@ Gem::Specification.new do |spec| spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.post_install_message = <<-msg + +---------------------------------------------- +Thank you for installing minima 2.0! + +Minima 2.0 comes with a breaking change that +renders '/css/main.scss' redundant. +That file is now bundled with this gem as +'/assets/css/main.scss'. + +More Information: +https://github.com/jekyll/minima#customization +---------------------------------------------- + +msg + spec.add_development_dependency "jekyll", "~> 3.2" spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0"