forked from scott-steadman/model_set
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_set.gemspec
More file actions
24 lines (20 loc) · 936 Bytes
/
model_set.gemspec
File metadata and controls
24 lines (20 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = 'model_set'
gem.version = IO.read('VERSION')
gem.authors = ['Justin Balthrop', 'Scott Steadman']
gem.email = ['git@justinbalthrop.com', 'scott.steadman@geni.com']
gem.description = %q{Easy manipulation of sets of ActiveRecord models}
gem.summary = gem.description
gem.homepage = 'https://github.com/geni/model_set'
gem.license = 'MIT'
# development dependencies in Gemfile
gem.add_dependency 'deep_clonable', '>= 1.1.0'
gem.add_dependency 'ordered_set', '>= 1.0.1'
gem.add_dependency 'rsolr'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
end