forked from kingsleyh/rspec_reports_formatter
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrspec_html_reporter.gemspec
27 lines (22 loc) · 990 Bytes
/
rspec_html_reporter.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
# -*- encoding : utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'rspec_html_reporter'
spec.version = '1.0.3'
spec.authors = ['Vishal Banthia']
spec.email = ['[email protected]']
spec.summary = 'RSpec HTML Reporter'
spec.description = 'RSpec HTML Reporter'
spec.homepage = 'https://github.com/vbanthia/rspec_html_reporter'
spec.licenses = ["MIT"]
spec.required_ruby_version = '>= 2.2.2'
spec.files = Dir['{lib,resources,templates}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z`.split("\0")
spec.add_runtime_dependency('rspec')
spec.add_runtime_dependency('rouge', '~> 1.6')
spec.add_runtime_dependency('activesupport')
spec.add_development_dependency('rdoc')
spec.add_development_dependency('pry')
spec.add_development_dependency('rake')
spec.add_development_dependency('rubocop')
end