-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
33 lines (28 loc) · 1.05 KB
/
Rakefile
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
28
29
30
31
32
33
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'redismetrics'
author 'Developers, developers, developers,…'
email '[email protected]'
homepage "https://github.com/betterplace/#{name}"
summary 'metrics library'
description 'This library allows you to store application metrics on a redistimeseries server'
test_dir 'spec'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '.rvmrc',
'.AppleDouble', '.DS_Store', 'errors.lst', 'tags'
readme 'README.md'
title "#{name.camelize} -- metrics library"
licenses << 'Apache-2.0'
bindir 'bin'
executables Dir['bin/*'].map(&File.method(:basename))
dependency 'redistimeseries'
dependency 'tins'
development_dependency 'rake'
development_dependency 'simplecov'
development_dependency 'rspec'
development_dependency 'rspec-collection_matchers'
development_dependency 'utils'
development_dependency 'debug'
development_dependency 'sidekiq'
end
task :default => :spec