-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcapistrano-notifier.gemspec
33 lines (28 loc) · 1.14 KB
/
capistrano-notifier.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/capistrano/notifier/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Justin Campbell", "Nathan L Smith"]
gem.email = ["[email protected]"]
gem.summary = %q{Capistrano Notifier}
gem.description = %q{Simple notification hooks for Capistrano}
gem.homepage = "http://github.com/cramerdev/capistrano-notifier"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.name = "capistrano-notifier"
gem.require_paths = ["lib"]
gem.version = Capistrano::Notifier::VERSION
case ENV['RAILS_VERSION']
when '3.2'
gem.add_dependency 'actionmailer', '~> 3.2.0'
when '4.0'
gem.add_dependency 'actionmailer', '~> 4.0.0'
else
gem.add_dependency 'actionmailer'
end
gem.add_dependency 'activesupport'
gem.add_dependency 'capistrano', '>= 2', '< 3'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'timecop'
end