-
Notifications
You must be signed in to change notification settings - Fork 186
/
json_api_client.gemspec
33 lines (25 loc) · 1.13 KB
/
json_api_client.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
$:.push File.expand_path("../lib", __FILE__)
# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
require 'json_api_client/version'
Gem::Specification.new do |s|
s.name = "json_api_client"
s.version = JsonApiClient::VERSION
s.description = 'Build client libraries compliant with specification defined by jsonapi.org'
s.summary = 'Build client libraries compliant with specification defined by jsonapi.org'
s.add_dependency "activesupport", '>= 6.0.0'
s.add_dependency "faraday", '>= 1.10', '< 3.0'
s.add_dependency "faraday-gzip", '>= 1.0', '< 3.0'
s.add_dependency "addressable", '~> 2.2'
s.add_dependency "activemodel", '>= 6.0.0'
s.add_dependency "rack", '>= 0.2'
s.add_development_dependency "webmock", '~> 3.5.1'
s.add_development_dependency "mocha"
s.add_development_dependency "appraisal"
s.license = "MIT"
s.author = "Jeff Ching"
s.email = "ching.jeff@gmail.com"
s.homepage = "http://github.com/chingor13/json_api_client"
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
s.test_files = Dir.glob('test/*_test.rb')
end