Sha256: 2d611d47a9158668126c97f9f44e7eb6666131cb579febee9e0aadd9fb7bb97e

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'fluent'
  spec.version       = Fluent::VERSION
  spec.author        = 'Jeff Nyman'
  spec.email         = 'jeffnyman@gmail.com'
  spec.description   = %q{Provides a semantic DSL to construct a fluent interface for test execution libraries.}
  spec.summary       = %q{A Semantically Clean Fluent Interface Test Framework}
  spec.homepage      = 'https://github.com/jnyman/fluent'
  spec.license       = 'MIT'
  spec.platform      = Gem::Platform::RUBY

  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 = %w(lib)

  spec.required_ruby_version = '>= 1.9.3'

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

  spec.add_development_dependency 'rspec', '~> 2.0'
  spec.add_development_dependency 'simplecov', '~> 0.7'

  spec.add_runtime_dependency 'watir-webdriver', '0.6.4'
  spec.add_runtime_dependency 'selenium-webdriver', '2.37.0'
  spec.add_runtime_dependency 'mechanize', '2.7.2'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-0.4.0 fluent.gemspec