forked from playup/zucchini
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zucchini-ios.gemspec
28 lines (24 loc) · 1.01 KB
/
zucchini-ios.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zucchini/version'
Gem::Specification.new do |s|
s.name = "zucchini-ios"
s.version = Zucchini::VERSION
s.authors = ["Vasily Mikhaylichenko"]
s.licenses = %w{ BSD MIT }
s.email = ["vaskas@lxmx.com.au"]
s.homepage = "http://www.zucchiniframework.org"
s.summary = %q{A visual iOS testing framework}
s.description = %q{Zucchini follows simple walkthrough scenarios for your iOS app, takes screenshots and compares them to the reference ones.}
s.add_runtime_dependency 'clamp'
s.add_runtime_dependency 'plist'
s.add_runtime_dependency 'nokogiri'
s.add_development_dependency 'rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'coveralls'
s.files = `git ls-files | grep -v '^spec'`.split("\n")
s.executables = %w(zucchini)
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.9.3'
end