Sha256: b299cd4aa92b770b4f46e5034bee202e712769844150295e98337fc37e0a1bed

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "testable"
  spec.version       = Testable::VERSION
  spec.authors       = ["Jeff Nyman"]
  spec.email         = ["jeffnyman@gmail.com"]
  spec.summary       = %q{A Semantically Clean Fluent Interface Test Framework}
  spec.description   = %q{
    Testable is a micro-framework that allows you to describe your application
    in terms of activity and page definitions. Those definitions can then be
    referenced by test libraries using the DSL that Testable provides.
  }
  spec.homepage      = "https://github.com/jnyman/testable"
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "rake", "~> 10.0"

  spec.post_install_message = %{
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)

  Testable #{Testable::VERSION} has been installed.

(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
  }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testable-0.0.1 testable.gemspec