-
Notifications
You must be signed in to change notification settings - Fork 1
/
statistrano.gemspec
27 lines (21 loc) · 1.02 KB
/
statistrano.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
require File.expand_path( "../lib/statistrano/version", __FILE__ )
Gem::Specification.new do |s|
s.name = 'statistrano'
s.version = Statistrano::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'deployment tool for static sites'
s.description = %q{ Deployment tool focused on static sites. Has different modes for releases with rollbacks, or for multiple branches allowing rapid prototyping. }
s.authors = ["Jordan Andree", "Steven Sloan"]
s.email = "[email protected]"
s.homepage = "http://github.com/mailchimp/statistrano"
s.license = "New-BSD"
s.files = Dir[ "{doc,lib}/**/*", "readme.md", "changelog.md" ]
s.test_files = Dir["spec/**/*.rb"]
s.require_path = "lib"
# Utility
s.add_dependency "rake", ["~> 10.0"]
s.add_dependency "rainbow", [">= 1.99", "< 2.1"]
s.add_dependency "slugity", ["~> 1.0"]
s.add_dependency "here_or_there", ["~> 0.2"]
s.add_dependency "asgit", ["~> 0.1"]
end