Sha256: 49811dc35b009940c00b8b26758a3e3a57ae5f06c2939a7d03f5fba1f1eb2a10
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rspec-deep-ignore-order-matcher/version' Gem::Specification.new do |gem| gem.name = "rspec-deep-ignore-order-matcher" gem.version = Deep::Ignore::Order::Matcher::VERSION gem.authors = ["Alexey Mogilnikov"] gem.email = ["alexey@mogilnikov.name"] gem.description = %q{This gem adds a custom matcher to RSpec to recursively compare nested Ruby data-structures consisting of `Hash` and `Array` elements. An order of elements in an array is ignored.} gem.summary = %q{A custom matcher to RSpec to recursively compare nested Ruby data-structures consisting of `Hash` and `Array` elements.} gem.homepage = 'https://github.com/amogil/rspec-deep-ignore-order-matcher' 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{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency 'rspec', '~> 2.6' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-deep-ignore-order-matcher-0.0.4 | rspec-deep-ignore-order-matcher.gemspec |