-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy patharel-helpers.gemspec
27 lines (22 loc) · 1.06 KB
/
arel-helpers.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
26
27
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'lib')
require 'arel-helpers/version'
Gem::Specification.new do |s|
s.name = 'arel-helpers'
s.version = ::ArelHelpers::VERSION
s.authors = ['Cameron Dutro']
s.email = ['[email protected]']
s.homepage = 'https://github.com/camertron/arel-helpers'
s.license = 'MIT'
s.description = s.summary = 'Useful tools to help construct database queries with ActiveRecord and Arel.'
s.platform = Gem::Platform::RUBY
s.add_dependency 'activerecord', '>= 3.1.0', '< 8'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'combustion', '~> 1.3'
s.add_development_dependency 'database_cleaner', '~> 2.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'sqlite3', '~> 1.4'
s.require_path = 'lib'
s.files = Dir['{lib,spec}/**/*', 'Gemfile', 'History.txt', 'README.md', 'Rakefile', 'arel-helpers.gemspec']
s.files -= Dir['spec/internal/log', 'spec/internal/log/**/*', 'spec/internal/db', 'spec/internal/db/**/*']
end