# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'slackistrano/version' Gem::Specification.new do |gem| gem.name = "slackistrano" gem.version = Slackistrano::VERSION gem.authors = ["Philip Hallstrom"] gem.email = ["philip@pjkh.com"] gem.description = %q{Send notifications to Slack about Capistrano deployments.} gem.summary = %q{Send notifications to Slack about Capistrano deployments.} gem.homepage = "https://github.com/phallstrom/slackistrano" gem.license = 'MIT' gem.required_ruby_version = '>= 2.0.0' gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency 'capistrano', '>= 3.5.0' gem.add_development_dependency 'rake' gem.add_development_dependency 'rspec' gem.add_development_dependency 'pry' gem.post_install_message = %Q{ BREAKING: You must now `require 'slackistrano/capistrano'` in your Capfile. Previously it was just `require 'slackistrano'`. It is also no longer necessary to add `require: false` in your Gemfile, but it won't hurt to leave it. Your files should now look like this: Gemfile: gem 'slackistrano' Capfile: require 'slackistrano/capistrano' } end