-
Notifications
You must be signed in to change notification settings - Fork 358
/
wraith.gemspec
34 lines (30 loc) · 1.44 KB
/
wraith.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wraith/version'
Gem::Specification.new do |spec|
spec.name = 'wraith'
spec.version = Wraith::VERSION
spec.authors = ['Dave Blooman', 'Simon Thulbourn', 'Chris Ashton']
spec.summary = 'Wraith screenshot comparison tool'
spec.description = 'Wraith is a screenshot comparison tool, created by developers at BBC News.'
spec.homepage = 'https://github.com/BBC-News/wraith'
spec.license = 'Apache-2.0'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
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 'rspec'
spec.add_development_dependency 'casperjs'
spec.add_runtime_dependency 'rake'
spec.add_runtime_dependency 'image_size'
spec.add_runtime_dependency 'mini_magick', "~> 4.8"
spec.add_runtime_dependency 'anemone'
spec.add_runtime_dependency 'robotex'
spec.add_runtime_dependency 'log4r'
spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'parallel'
spec.add_runtime_dependency 'selenium-webdriver', "~> 3.5"
spec.add_runtime_dependency 'chromedriver-helper', "~> 1.1"
end