Sha256: 661ca2ea6d4128a0ddd7ea02edcbd9e6c9f2b97e9093d30fa3cca888e09bee93
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
# frozen_string_literal: true $LOAD_PATH.push File.expand_path('lib', __dir__) require 'with_model/version' Gem::Specification.new do |spec| spec.name = 'with_model' spec.version = WithModel::VERSION spec.authors = ['Case Commons, LLC', 'Grant Hutchins', 'Andrew Marshall'] spec.email = %w[casecommons-dev@googlegroups.com gems@nertzy.com andrew@johnandrewmarshall.com] spec.homepage = 'https://github.com/Casecommons/with_model' spec.summary = 'Dynamically build a model within an RSpec context' spec.description = spec.summary spec.license = 'MIT' spec.metadata['rubygems_mfa_required'] = 'true' spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.6' spec.add_dependency 'activerecord', '>= 5.2' spec.add_development_dependency 'bundler' spec.add_development_dependency 'minitest' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'rubocop-minitest' spec.add_development_dependency 'rubocop-rake' spec.add_development_dependency 'rubocop-rspec' spec.add_development_dependency 'simplecov' spec.add_development_dependency 'yard' if RUBY_PLATFORM == 'java' spec.add_development_dependency 'activerecord-jdbcsqlite3-adapter' else spec.add_development_dependency 'sqlite3' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
with_model-2.1.6 | with_model.gemspec |