-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrspec-common.gemspec
35 lines (26 loc) · 1.42 KB
/
rspec-common.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
# frozen_string_literal: true
require_relative "lib/rspec/common/version"
Gem::Specification.new do |spec|
spec.name = "rspec-common"
spec.version = Rspec::Common::VERSION
spec.authors = ["Adam Milligan"]
spec.email = ["adam@buildgroundwork.com"]
spec.summary = "Helpful shared examples and matchers for Rails."
spec.homepage = "https://github.com/buildgroundwork/rspec-common"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.1")
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/buildgroundwork/rspec-common"
spec.metadata["changelog_uri"] = "https://github.com/buildgroundwork/rspec-common/releases"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) { `git ls-files -z`.split("\x0") }
spec.require_paths = ["lib"]
spec.add_dependency("rack-test", "~> 2.0")
spec.add_dependency("rspec-collection_matchers", "~> 1.2")
spec.add_dependency("rspec-core", "~> 3.10", ">= 3.10.1")
spec.add_dependency("rspec-rails", "~> 7.0")
spec.add_development_dependency("rake", "~> 13.0", ">= 13.0.3")
spec.metadata = { "rubygems_mfa_required" => "true" }
end