-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactiverecord_null_object.gemspec
More file actions
30 lines (25 loc) · 1.31 KB
/
activerecord_null_object.gemspec
File metadata and controls
30 lines (25 loc) · 1.31 KB
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
28
29
30
# frozen_string_literal: true
require File.expand_path('lib/activerecord_null_object/version', __dir__)
Gem::Specification.new do |spec|
spec.name = "activerecord_null_object"
spec.version = ActiveRecordNullObject::VERSION
spec.authors = ["Scott Woods", "Alessandro Berardi"]
spec.email = ["[email protected]"]
spec.description = %q{Implements the Null Object Pattern for nil values in ActiveRecord associations.}
spec.summary = %q{Implements the Null Object Pattern for nil values in ActiveRecord associations.}
spec.homepage = 'http://github.com/sealink/activerecord_null_object'
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "activesupport", ">= 6.0", "< 9"
spec.add_runtime_dependency "activerecord", ">= 6.0", "< 8"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-its"
spec.add_development_dependency "coverage-kit"
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'pry-byebug'
end