forked from appium/ruby_console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appium_console.gemspec
38 lines (31 loc) · 1.23 KB
/
appium_console.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
35
36
37
38
# encoding: utf-8
def self.add_to_path path
path = File.expand_path "../#{path}/", __FILE__
$:.unshift path unless $:.include? path
end
add_to_path 'lib'
require 'appium_console/version'
Gem::Specification.new do |s|
# 1.8.x is not supported
s.required_ruby_version = '>= 1.9.3'
s.name = 'appium_console'
s.version = Appium::Console::VERSION
s.date = Appium::Console::DATE
s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
s.description = s.summary = 'Appium Ruby Console'
s.description += '.' # avoid identical warning
s.authors = s.email = [ '[email protected]' ]
s.homepage = 'https://github.com/appium/ruby_console' # published as appium_console
s.require_paths = [ 'lib' ]
# appium_lib version must match ruby console version.
s.add_runtime_dependency 'appium_lib', '>= 1.0.0'
s.add_runtime_dependency 'pry', '~> 0.10.1'
s.add_runtime_dependency 'bond', '~> 0.5.1'
s.add_runtime_dependency 'spec', '>= 5.3.4'
s.add_runtime_dependency 'thor', '>= 0.19'
s.add_development_dependency 'rake', '~> 10.4.2'
s.add_development_dependency 'appium_thor', '>= 1.0.1'
s.add_development_dependency 'posix-spawn', '~> 0.3.11'
s.executables = [ 'arc' ]
s.files = `git ls-files`.split "\n"
end