Sha256: 1d2d32f3deb19c95148629848931fd790e195debf9137b781ff8cd6183186a78

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_rspec/version'

Gem::Specification.new do |spec|
  spec.name          = 'smart_rspec'
  spec.version       = SmartRspec::VERSION
  spec.authors       = ['Tiago Guedes']
  spec.email         = ['tiagopog@gmail.com']
  spec.summary       = %q{Macros and matchers to make your RSpec tests even more amazing.}
  spec.description   = %q{Collection of useful macros and matchers for RSpec tests of models/controllers in Rails-based apps.}
  spec.homepage      = 'https://github.com/tiagopog/smart_rspec'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  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.add_runtime_dependency 'activesupport', '~> 5.0.0'
  spec.add_runtime_dependency 'rspec-collection_matchers', '~> 1.1', '>= 1.1.2'

  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'faker', '~> 1.4'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.5.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
smart_rspec-0.1.5 smart_rspec.gemspec