# -*- 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 DSL for benchmarking your Ruby code' s.description = 'Benches defines a simple benchmarking DSL that allows you to create benchmark routines 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.license = 'MIT' end