Sha256: e6dd648cb86ee5fd11c084ce60b91124fe524c9c288204f0219b32ce9cb5685d
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 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.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) 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.required_ruby_version = '>= 2.3' spec.add_dependency 'activerecord', '>= 4.2', '< 6.0' spec.add_development_dependency 'bundler', '~> 1.0' spec.add_development_dependency 'minitest' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3.0' if RUBY_PLATFORM == 'java' spec.add_development_dependency 'activerecord-jdbcsqlite3-adapter' else spec.add_development_dependency 'sqlite3' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
with_model-2.1.1 | with_model.gemspec |
with_model-2.1.0 | with_model.gemspec |