-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcap_bootstrap.gemspec
More file actions
17 lines (15 loc) · 854 Bytes
/
cap_bootstrap.gemspec
File metadata and controls
17 lines (15 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/cap_bootstrap/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Christopher Saylor"]
gem.email = ["chris@justhack.com"]
gem.description = %q{Capistrano tasks for deploying Rails applications using Ubuntu 10.04, rbenv, nginx, Unicorn and PostgreSQL.}
gem.summary = %q{Capistrano tasks for deploying Rails applications using Ubuntu 10.04, rbenv, nginx, Unicorn and PostgreSQL.}
gem.homepage = "http://github.com/cwsaylor/cap_bootstrap"
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.name = "cap_bootstrap"
gem.require_paths = ["lib"]
gem.version = CapBootstrap::VERSION
end