-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontrol_spec_helper.gemspec
37 lines (34 loc) · 1.65 KB
/
control_spec_helper.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'control_spec_helper/version'
Gem::Specification.new do |s|
s.name = 'control_spec_helper'
s.version = ControlSpecHelper::Version::STRING
s.authors = ['Slalom Consulting']
s.email = ['[email protected]']
s.homepage = 'http://github.com/eshamow/control_spec_helper'
s.summary = 'Standard tasks and configuration for control repo spec tests'
s.description = 'Contains rake tasks and a standard spec_helper for ' \
'running spec tests on puppet control repo'
s.licenses = 'Apache-2.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n")
.map { |f| File.basename(f) }
# Runtime dependencies, but also probably dependencies of requiring projects
s.add_runtime_dependency 'rake', '~> 11.0'
s.add_runtime_dependency 'rspec-puppet', '~> 2.4'
s.add_runtime_dependency 'puppet', '~> 4.0'
s.add_runtime_dependency 'puppet-syntax', '~> 2.1'
s.add_runtime_dependency 'mocha', '~> 1.1'
s.add_runtime_dependency 'git', '~> 1.3'
s.add_runtime_dependency 'rubocop', '~> 0.49.0'
s.add_runtime_dependency 'r10k', '~> 2.2'
s.add_runtime_dependency 'net-ssh', '~> 3.1'
s.add_runtime_dependency 'listen', '3.1.1'
s.add_runtime_dependency 'guard', '~> 2.14'
s.add_runtime_dependency 'guard-rspec', '~> 4.7'
s.add_runtime_dependency 'puppet-lint', '~> 2.0'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'fakefs', '~> 0.8'
end