-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlineup.gemspec
executable file
·26 lines (23 loc) · 1 KB
/
lineup.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
require File.expand_path('../lib/lineup/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = %w(Finn Lorbeer)
gem.version = Lineup::Version
gem.name = 'lineup'
gem.platform = Gem::Platform::RUBY
gem.require_paths = %w(lib)
gem.license = 'MIT'
gem.email = %w([email protected])
gem.summary = "lineup will help you in your automated design regression testing"
gem.description = %q{lineup takes to screenshots of your app and compares them to references in order to find design flaws in your new code.}
gem.homepage = 'https://www.otto.de'
gem.files = `git ls-files`.split("\n")
gem.add_dependency 'rspec', '~>3.2'
gem.add_dependency 'pxdoppelganger', '~>0.1'
gem.add_dependency 'selenium-webdriver', '~>2.46'
gem.add_dependency 'watir-webdriver', '~>0.8'
gem.add_dependency 'watir', '~>5.0'
gem.add_dependency 'headless', '~>0.1'
gem.add_dependency 'dimensions', '~>1.3'
gem.add_dependency 'chunky_png', '<=1.3.6'
gem.add_dependency 'oily_png', '~>1.2'
end