forked from Drieam/rspec-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrspec-github.gemspec
25 lines (19 loc) · 979 Bytes
/
rspec-github.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
# frozen_string_literal: true
require_relative 'lib/rspec/github/version'
Gem::Specification.new do |spec|
spec.name = 'rspec-github'
spec.version = RSpec::Github::VERSION
spec.authors = ['Stef Schenkelaars']
spec.email = ['[email protected]']
spec.summary = 'Formatter for RSpec to show errors in GitHub action annotations'
spec.description = 'Formatter for RSpec to show errors in GitHub action annotations'
spec.homepage = 'https://drieam.github.io/rspec-github'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/drieam/rspec-github'
# Specify which files should be added to the gem when it is released.
spec.files = Dir['{lib}/**/*']
spec.add_runtime_dependency 'rspec-core', '~> 3.0'
end