forked from phallstrom/slackistrano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slackistrano.gemspec
44 lines (34 loc) · 1.44 KB
/
slackistrano.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- 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 = ["[email protected]"]
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_dependency 'json'
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