Sha256: 83fc33d95f96ebd09a17155b31c07a9d0e36aa93209e154eca869c640beac925
Contents?: true
Size: 1.11 KB
Versions: 6
Compression:
Stored size: 1.11 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'version' Gem::Specification.new do |s| s.name = "frameworks-capybara" s.version = FrameworksCapybara::VERSION s.authors = ["matt robbins"] s.email = ["mcrobbins@gmail.com"] s.description = "Gem to ease the pain of managing capybara driver config and provide a home for common utils and patches" s.files = Dir.glob("{features,lib,bin,config,vendor,.bundle}/**/*") + %w(Gemfile Gemfile.lock) s.require_paths = ["lib"] s.rubygems_version = "2.4.2" s.summary = "Gem to ease the pain of managing capybara driver config and provide a home for common utils and patches" s.files = `git ls-files`.split("\n") s.add_runtime_dependency("selenium-webdriver") s.add_runtime_dependency("capybara") s.add_runtime_dependency("mechanize") s.add_runtime_dependency("capybara-mechanize") s.add_runtime_dependency("json") s.add_runtime_dependency("cucumber") s.add_runtime_dependency("w3c_validators") s.add_development_dependency("rake") s.add_development_dependency("rspec") end
Version data entries
6 entries across 6 versions & 1 rubygems