Sha256: 2d75f910530412985f3476e12602d8c50afc7ac696806e9198fda9505f6577b9

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "cuke-irb"
  s.version     = CukeIrb::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Andreas Heim"]
  s.email       = ["andreas@heim.no"]
  s.homepage    = "http://github.com/heim/cuke-irb"
  s.summary     = %q{Cucumber plugin that enables user to stop the execution of a feature and inspect the environment using irb}
  s.description = %q{Cucumber plugin that enables user to stop the execution of a feature and inspect the environment using irb}

  s.add_dependency "cucumber"

  s.post_install_message = <<-EOS

  *****************************************************************
  * To use the cuke-irb tag your scenarios with @wip and @stop    *
  *****************************************************************
  EOS

  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

1 entries across 1 versions & 1 rubygems

Version Path
cuke-irb-0.0.1 cuke-irb.gemspec