# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "benchmeth/version" Gem::Specification.new do |spec| spec.name = "benchmeth" spec.version = Benchmeth::VERSION spec.authors = ["Andrew Kane"] spec.email = ["andrew@chartkick.com"] spec.summary = "The super easy way to benchmark methods" spec.description = "The super easy way to benchmark methods" spec.homepage = "https://github.com/ankane/benchmeth" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency "activesupport" end