-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgovuk_schemas.gemspec
32 lines (26 loc) · 1.33 KB
/
govuk_schemas.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "govuk_schemas/version"
Gem::Specification.new do |spec|
spec.name = "govuk_schemas"
spec.version = GovukSchemas::VERSION
spec.authors = ["GOV.UK Dev"]
spec.email = ["[email protected]"]
spec.summary = "Gem to generate test data based on GOV.UK content schemas"
spec.description = "Gem to generate test data based on GOV.UK content schemas"
spec.homepage = "https://github.com/alphagov/govuk_schemas_gem"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]
spec.add_dependency "faker", ">= 3.4.1", "< 3.6.0"
# This should be kept in sync with the json-schema version of publishing-api.
spec.add_dependency "json-schema", ">= 2.8", "< 5.2"
spec.add_development_dependency "climate_control"
spec.add_development_dependency "pry-byebug"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "rubocop-govuk", "5.0.9"
spec.required_ruby_version = ">= 3.1.4"
end