-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdato-rails.gemspec
More file actions
30 lines (25 loc) · 1.23 KB
/
dato-rails.gemspec
File metadata and controls
30 lines (25 loc) · 1.23 KB
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
require_relative "lib/dato/version"
Gem::Specification.new do |spec|
spec.name = "dato-rails"
spec.version = Dato::VERSION
spec.authors = ["Alessandro Rodi"]
spec.email = ["alessandro.rodi@renuo.ch"]
spec.homepage = "https://github.com/renuo/dato-rails"
spec.summary = "Use Dato CMS in your Rails application."
spec.description = "This gem allows you to fetch data using Dato GraphQL APIs and render the content in your Rails app."
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/renuo/dato-rails"
spec.metadata["changelog_uri"] = "https://github.com/renuo/dato-rails/blob/main/CHANGELOG.md"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_development_dependency "rspec-rails", ">= 3.0"
spec.add_development_dependency "standard", "~> 1.0"
spec.add_development_dependency "dotenv"
spec.add_development_dependency "capybara"
spec.add_development_dependency "vcr"
spec.add_development_dependency "webmock"
spec.add_dependency "view_component", ">= 4.0"
spec.add_dependency "rails", ">= 8"
spec.add_dependency "turbo-rails", ">= 2"
spec.add_dependency "gqli", ">= 1"
spec.add_dependency "zeitwerk", ">= 1"
end