forked from flyerhzm/bullet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbullet.gemspec
More file actions
24 lines (18 loc) · 769 Bytes
/
bullet.gemspec
File metadata and controls
24 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "bullet/version"
Gem::Specification.new do |s|
s.name = "bullet"
s.version = Bullet::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Richard Huang"]
s.email = ["flyerhzm@gmail.com"]
s.homepage = "http://github.com/flyerhzm/bullet"
s.summary = "A rails plugin to kill N+1 queries and unused eager loading."
s.description = "A rails plugin to kill N+1 queries and unused eager loading."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "uniform_notifier"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end