-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrspec-graphql-integration.gemspec
More file actions
26 lines (21 loc) · 983 Bytes
/
rspec-graphql-integration.gemspec
File metadata and controls
26 lines (21 loc) · 983 Bytes
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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rspec/graphql_integration/version"
Gem::Specification.new do |spec|
spec.name = "rspec-graphql-integration"
spec.version = RSpec::GraphqlIntegration::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Peter Gundel"]
spec.email = ["gundel.peter@gmail.com"]
spec.summary = "An RSpec plugin to simplify integration tests for GraphQL"
spec.homepage = "https://github.com/peterfication/rspec-graphql-integration"
spec.license = "MIT"
spec.metadata = {
"rubygems_mfa_required" => "true",
}
spec.files = `git ls-files -- lib/*`.split("\n")
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.0"
spec.add_dependency "graphql", ">= 1.0.0"
spec.add_dependency "rspec-core", ">= 3.0.0"
end