Sha256: 9050c24af8937a8cacab7dcef5f7f68776a808f89104725051936206ff9880c5

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'teatime/version'

Gem::Specification.new do |spec|
  spec.name          = "teatime"
  spec.version       = Teatime::VERSION
  spec.authors       = ["Jakob Holderbaum"]
  spec.email         = ["jakob@featurefabrik.de"]
  spec.summary       = %q{A sweet testing Teatime with mocha.js and chai.js}
  spec.description   = (<<-DESC
      At featurefabrik, we are big fans of javascript and testing. 
      Also we believe, that mocha.js and chai.js are simply awesome.
      To remove the npm dependencies and enable fast and simple testing of
      non-Rails projects with js usage, we built Teatime.
    DESC
  ).gsub(/^\s*/, '')
  spec.homepage      = "https://github.com/featurefabrik/teatime"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"

  spec.add_dependency "haml"
  spec.add_dependency "sinatra"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
teatime-0.0.2 teatime.gemspec