forked from jmoses/fitter_happier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitter-happier.gemspec
More file actions
21 lines (16 loc) · 835 Bytes
/
fitter-happier.gemspec
File metadata and controls
21 lines (16 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lib = File.expand_path('../lib/', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = 'fitter-happier'
s.version = '0.0.2'
s.platform = Gem::Platform::RUBY
s.authors = ['Jon Moses', 'Corey Donohoe', 'Zachary Spencer']
s.email = ['zspencer@zacharyspencer.com']
s.homepage = 'https://github.com/zspencer/fitter-happier'
s.summary = 'FitterHappier is a plug-in that provides actions for monitoring site and/or database availability for rails apps.'
s.description = 'send bug reports to http://github.com/zspencer/fitter-happier/'
s.files = Dir.glob("{lib,app,config,rails}/**/*") + %w( CHANGELOG MIT-LICENSE README.mdown )
s.require_path = 'lib'
s.add_runtime_dependency("actionpack")
s.add_development_dependency("rake")
end