-
Notifications
You must be signed in to change notification settings - Fork 1
/
microstatic.gemspec
26 lines (22 loc) · 1.22 KB
/
microstatic.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/microstatic/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Pete Hodgson"]
gem.email = ["[email protected]"]
gem.description = %q{The microstatic gem turns generating your static site and deploying it to S3 into a one-liner.}
gem.summary = %q{Generate static sites from git and deploy them to an S3 bucket.}
gem.homepage = "https://github.com/moredip/microstatic"
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 = "microstatic"
gem.require_paths = ["lib"]
gem.version = Microstatic::VERSION
gem.add_runtime_dependency "fog", ">=1"
gem.add_runtime_dependency "thor", ">=0.15" # 0.15 is an arbitrary guess at what might be API-compatible
gem.add_runtime_dependency "rainbow", ">= 2.0"
gem.add_runtime_dependency "rake" # we use Rake::FileList to specify which files to upload
gem.add_development_dependency "bundler"
gem.add_development_dependency "rspec", "~>2.13.0"
gem.add_development_dependency "pry-nav", "~> 0.2.3"
end