-
Notifications
You must be signed in to change notification settings - Fork 140
/
marginalia.gemspec
25 lines (22 loc) · 1022 Bytes
/
marginalia.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
Gem::Specification.new do |gem|
gem.authors = ["Noah Lorang", "Nick Quaranto", "Taylor Weibley"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/basecamp/marginalia"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test}/*`.split("\n")
gem.name = "marginalia"
gem.require_paths = ["lib"]
gem.version = "1.11.1"
gem.license = "MIT"
gem.add_runtime_dependency "actionpack", ">= 5.2"
gem.add_runtime_dependency "activerecord", ">= 5.2"
gem.add_development_dependency "rake"
gem.add_development_dependency "mysql2"
gem.add_development_dependency "pg"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "minitest"
gem.add_development_dependency "mocha"
gem.add_development_dependency "sidekiq"
gem.summary = gem.description = %q{Attach comments to your ActiveRecord queries.}
end