Sha256: b009f63a2a07e5d0ec84fb16d5d302b4106274ddbc1024642cf20fd9100d234d
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
require File.expand_path('../lib/schema_expectations/version', __FILE__) Gem::Specification.new do |gem| gem.platform = Gem::Platform::RUBY gem.name = 'schema_expectations' gem.version = SchemaExpectations::VERSION gem.summary = 'Database Schema Expectations' gem.description = %q( Allows you to test whether your database schema matches the validations in your ActiveRecord models.' ) gem.license = 'MIT' gem.authors = ['Emma Borhanian'] gem.email = 'emma.borhanian+schema_expectations@gmail.com' gem.homepage = 'https://github.com/emma-borhanian/schema_expectations' 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{^spec/}) gem.require_paths = %w(lib) gem.required_ruby_version = '>= 2.0.0' gem.add_dependency 'activerecord', '~> 4.2' gem.add_development_dependency 'pry' gem.add_development_dependency 'rake', '~> 10.4' gem.add_development_dependency 'yard', '~> 0.8.7' # tests gem.add_development_dependency 'codeclimate-test-reporter' gem.add_development_dependency 'rspec', '~> 3.2' gem.add_development_dependency 'guard-rspec', '~> 4.5' gem.add_development_dependency 'sqlite3', '~> 1.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
schema_expectations-0.0.1 | schema_expectations.gemspec |