Sha256: c88f402bc0ac5d512922172d3af293d691ef7c4eb66d3d2689a7b7f9236d6218

Contents?: true

Size: 936 Bytes

Versions: 1

Compression:

Stored size: 936 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "benches/version"

Gem::Specification.new do |s|
  s.name        = "benches"
  s.version     = Benches::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Evan Hemsley"]
  s.email       = ["evan.hemsley@gmail.com"]
  s.homepage    = 'http://github.com/ehemsley/benches'
  s.summary     = 'A simple rspec matcher for testing performance metrics'
  s.description = 'Benches defines a simple rspec matcher that allows you to create benchmarking specs for your Ruby code.'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency 'rspec', '~> 2.14', '>= 2.14.1'
  s.add_dependency 'activesupport', '~> 4.0', '>= 4.0.3'

  s.license       = 'MIT'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
benches-0.3.0 benches.gemspec