# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) Gem::Specification.new do |s| s.name = "dlss-capistrano" s.version = '4.3.0' s.platform = Gem::Platform::RUBY s.authors = ["Chris Beer", 'Mike Giarlo'] s.email = ["cabeer@stanford.edu", 'mjgiarlo@stanford.edu'] s.summary = "Capistrano recipes for use in SUL/DLSS projects" s.description = "Capistrano recipes to assist with development, testing, & deployment of SUL/DLSS Ruby projects" s.license = "Apache-2.0" s.required_rubygems_version = ">= 1.3.6" s.required_ruby_version = '>= 1.9.3' # All dependencies are runtime dependencies, since this gem's "runtime" is # the dependent gem's development-time. s.add_dependency "capistrano", "~> 3.0" s.add_dependency "capistrano-bundle_audit", ">= 0.3.0" s.add_dependency "capistrano-one_time_key" s.add_dependency "capistrano-shared_configs" s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) end