-
Notifications
You must be signed in to change notification settings - Fork 26
/
watchbuild.gemspec
37 lines (31 loc) · 1.45 KB
/
watchbuild.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'watchbuild/version'
Gem::Specification.new do |spec|
spec.name = 'watchbuild'
spec.version = WatchBuild::VERSION
spec.authors = ['Felix Krause']
spec.email = ['[email protected]']
spec.summary = WatchBuild::DESCRIPTION
spec.description = WatchBuild::DESCRIPTION
spec.homepage = 'https://fastlane.tools'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.0.0'
spec.files = Dir['lib/**/*'] + %w(bin/watchbuild README.md LICENSE)
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_dependency 'fastlane', '>= 2.0.0', '< 3.0.0' # all shared code and dependencies
spec.add_dependency 'terminal-notifier' # show a notification once the build is ready
# Development only
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '< 12'
spec.add_development_dependency 'rspec', '~> 3.1.0'
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.2.3'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'yard', '>= 0.9.11'
spec.add_development_dependency 'webmock', '~> 1.19.0'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency 'rubocop', '>= 0.49.0'
end