Sha256: 4bb68bf00bacbac52a2851377279597b72853cd75fcfef95468145a370a90093
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 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' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fluent-0.3.0 | fluent.gemspec |
fluent-0.2.0 | fluent.gemspec |
fluent-0.1.0 | fluent.gemspec |