forked from bendyworks/bwoken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbwoken.gemspec
30 lines (24 loc) · 1019 Bytes
/
bwoken.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/bwoken/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'bwoken'
gem.version = Bwoken::VERSION
gem.description = %q{iOS UIAutomation Test Runner}
gem.summary = %q{Runs your UIAutomation tests from the command line for both iPhone and iPad; supports coffeescript}
gem.authors = ['Brad Grzesiak']
gem.email = ['[email protected]']
gem.homepage = 'https://bendyworks.github.com/bwoken'
gem.license = 'MIT'
gem.files = Dir['LICENSE', 'README.md', 'bin/**/*', 'lib/**/*']
gem.require_path = 'lib'
gem.bindir = 'bin'
gem.executables = ['unix_instruments.sh', 'bwoken']
gem.add_dependency 'coffee-script-source'
gem.add_dependency 'colorful'
gem.add_dependency 'execjs'
gem.add_dependency 'json_pure'
gem.add_dependency 'rake'
gem.add_dependency 'slop'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'guard-rspec'
end