-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhas_metrics.gemspec
25 lines (22 loc) · 1.04 KB
/
has_metrics.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/has_metrics/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "has_metrics"
gem.version = HasMetrics::VERSION
gem.authors = ["Allan Grant"]
gem.email = ["[email protected]"]
gem.description = %q{Calculate metrics and store them in the DB.}
gem.summary = %q{Calculate "metrics" (any expensive methods) on ActiveRecord entries and memoize them to an automagical table.}
gem.homepage = "http://github.com/allangrant/has_metrics"
gem.license = "MIT"
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.require_paths = ["lib"]
gem.add_dependency "activerecord"
gem.add_development_dependency "rake"
gem.add_development_dependency "bundler"
# gem.add_development_dependency "shoulda"
# gem.add_development_dependency "sqlite3"
# gem.add_development_dependency "pry"
end