-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathew_sql_metrics.gemspec
More file actions
23 lines (19 loc) · 929 Bytes
/
ew_sql_metrics.gemspec
File metadata and controls
23 lines (19 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ew_sql_metrics/version"
Gem::Specification.new do |s|
s.name = "ew_sql_metrics"
s.summary = "Publish and subscribe your Rails 3 sql operations"
s.description = "Utilize ActiveSupport Notification API to instrument all sql operations executed by your rails application."
s.homepage = "http://github.com/Consoci8/ew_sql_metrics"
s.authors = ["Muhammad Fadhli Rahim"]
s.email = "fadhlirahim@gmail.com"
s.files = Dir["lib/**/*"] + Dir["app/**/*"] + Dir["config/routes.rb"] + ["Gemfile","GPLv3.txt", "LICENSE.txt", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.version = EwSqlMetrics::VERSION.dup
s.require_paths = ["lib"]
s.add_dependency("will_paginate", "~> 3.0.pre2")
s.add_dependency("mongoid", "2.0.0.rc.5")
s.add_dependency("mongo", "1.1.5")
s.add_dependency("bson_ext", "1.2.0")
end