Sha256: d695fe0d5106cc9c519c2301cbe5a325624e63e3780b75bcada1294396bed219

Contents?: true

Size: 991 Bytes

Versions: 1

Compression:

Stored size: 991 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "assert-activerecord/version"

Gem::Specification.new do |gem|
  gem.name        = "assert-activerecord"
  gem.version     = AssertActiveRecord::VERSION
  gem.authors     = ["Kelly Redding", "Collin Redding"]
  gem.email       = ["kelly@kellyredding.com", "collin.redding@me.com"]
  gem.summary     = "Helpers for testing ActiveRecords in Assert test suites."
  gem.description = "Helpers for testing ActiveRecords in Assert test suites."
  gem.homepage    = "https://github.com/redding/assert"
  gem.license     = "MIT"

  gem.files         = `git ls-files | grep "^[^.]"`.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"]

  gem.required_ruby_version = '> 1.8'

  gem.add_development_dependency("assert", ["~> 2.17.0"])

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
assert-activerecord-0.0.1 assert-activerecord.gemspec