-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjsonapi_expectations.gemspec
More file actions
27 lines (21 loc) · 1021 Bytes
/
jsonapi_expectations.gemspec
File metadata and controls
27 lines (21 loc) · 1021 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
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jsonapi_expectations/version'
Gem::Specification.new do |spec|
spec.name = 'jsonapi_expectations'
spec.version = JsonapiExpectations::VERSION
spec.authors = ['Ross-Hunter']
spec.email = ['ross-hunter@ross-hunter.com']
spec.summary = 'Semantic expectation helpers for JSON API testing using Airborne and RSpec.'
spec.homepage = 'https://github.com/Ross-Hunter/jsonapi_expectations'
spec.license = 'MIT'
spec.files = ['lib/jsonapi_expectations.rb']
spec.add_runtime_dependency 'airborne', '~> 0.2.12'
spec.add_runtime_dependency 'activesupport'
spec.add_development_dependency 'bundler', '~> 1.14'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'webmock', '~> 3.0'
spec.add_development_dependency 'pry-byebug', '~> 3.4'
end