Sha256: 4636dd5034bfa9f76887c76eb91183c31d2da7e269d9de20c74e106b6ae8809b

Contents?: true

Size: 837 Bytes

Versions: 3

Compression:

Stored size: 837 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "stopwatch"
  s.version     = Stopwatch::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Mark Mulder"]
  s.email       = ["markmulder@gmail.com"]
  s.homepage    = "https://github.com/bittersweet/stopwatch"
  s.summary     = "Show the page load duration."
  s.description = "This gem uses Rack middleware and the Rails 3 Notification API to display page load time and amount of queries executed."

  s.rubyforge_project = "stopwatch"

  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"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stopwatch-0.0.4 stopwatch.gemspec
stopwatch-0.0.3 stopwatch.gemspec
stopwatch-0.0.2 stopwatch.gemspec