-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatisfaction.gemspec
24 lines (20 loc) · 992 Bytes
/
statisfaction.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/statisfaction/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = %q{Lennaert Meijvogel}
gem.email = %q{[email protected]}
gem.description = %q{Adds statistics collection to any Ruby/Rails class}
gem.summary = %q{Adds statistics collection to any Ruby/Rails class}
gem.homepage = "http://rubygems.org/gems/statisfaction"
gem.add_dependency('rails', '>= 3.0.0')
gem.add_development_dependency("rspec", ">= 2.0.0")
gem.add_development_dependency("rspec-rails", ">= 2.0.0")
gem.add_development_dependency("mysql2")
gem.add_development_dependency("combustion")
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 = "statisfaction"
gem.require_paths = ["lib"]
gem.version = Statisfaction::VERSION
end