forked from varvet/ar_outer_joins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathar_outer_join.gemspec
More file actions
22 lines (19 loc) · 946 Bytes
/
ar_outer_join.gemspec
File metadata and controls
22 lines (19 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ar_outer_joins/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jonas Nicklas", "Elabs AB"]
gem.email = ["jonas.nicklas@gmail.com", "dev@elabs.se"]
gem.description = %q{Adds the missing outer_joins method to ActiveRecord}
gem.summary = %q{outer_joins for ActiveRecord}
gem.homepage = "http://github.com/elabs/ar_outer_joins"
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,spec,features}/*`.split("\n")
gem.name = "ar_outer_joins"
gem.require_paths = ["lib"]
gem.version = ArOuterJoins::VERSION
gem.add_dependency "activerecord", ">=3.2", "<5.0"
gem.add_development_dependency "rspec"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "pry"
end