Sha256: e82c14ee6ef688e4d95604b266bff1192279baaafeb1d86f81a9476720bf811d

Contents?: true

Size: 916 Bytes

Versions: 3

Compression:

Stored size: 916 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "diagnostics"
  s.version     = Diagnostics::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Justin Ko"]
  s.email       = ["jko170@gmail.com"]
  s.homepage    = "http://github.com/justinko/diagnostics"
  s.summary     = "diagnostics-#{Diagnostics::VERSION}"
  s.description = "A Rails Engine that let's you make diagnostic checks."

  s.rubyforge_project = "diagnostics"

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

  s.add_development_dependency 'rspec', '2.4.0'
  s.add_development_dependency 'cucumber', '0.8.3'
  s.add_development_dependency 'aruba', '0.2.2'
end

Version data entries

3 entries across 3 versions & 1 rubygems

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