-
Notifications
You must be signed in to change notification settings - Fork 6
/
alchemy-json_api.gemspec
29 lines (23 loc) · 1.06 KB
/
alchemy-json_api.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
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "alchemy/json_api/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "alchemy-json_api"
spec.version = Alchemy::JsonApi::VERSION
spec.authors = ["Martin Meyerhoff", "Thomas von Deyen"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/AlchemyCMS/alchemy-json_api"
spec.summary = "A JSONAPI compliant API for AlchemyCMS"
spec.description = "A JSONAPI compliant API for AlchemyCMS"
spec.license = "BSD-3-Clause"
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
spec.add_dependency "alchemy_cms", [">= 7.0.0.a", "< 8"]
spec.add_dependency "jsonapi.rb", [">= 1.6.0", "< 2.2"]
spec.add_development_dependency "factory_bot"
spec.add_development_dependency "github_changelog_generator"
spec.add_development_dependency "jsonapi-rspec"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "shoulda-matchers"
end