-
Notifications
You must be signed in to change notification settings - Fork 12
/
whacamole.gemspec
25 lines (19 loc) · 907 Bytes
/
whacamole.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/whacamole/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "whacamole"
gem.authors = ["Chris Doyle"]
gem.email = ["archslide@gmail.com"]
gem.email = "archslide@gmail.com"
gem.description = "Whacamole"
gem.summary = "restart heroku dynos that run out of RAM instead of swapping to disk"
gem.homepage = "http://github.com/arches/whacamole"
gem.version = Whacamole::VERSION
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.executables = ['whacamole']
gem.add_development_dependency 'rspec', '~> 2.11'
gem.add_development_dependency 'rake', '~> 10.1'
end