-
Notifications
You must be signed in to change notification settings - Fork 0
/
renalware-forms.gemspec
36 lines (31 loc) · 1.22 KB
/
renalware-forms.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
34
35
36
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "renalware/forms/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "renalware-forms"
spec.version = Renalware::Forms::VERSION
spec.authors = ["Airslie Ltd"]
spec.email = ["dev@aisrlie.com"]
spec.homepage = "http://airslie.com"
spec.summary = "PDF library for Renalware forms"
spec.description = "The home for various forms for external providers eg home care prescriptions"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata = {
"rubygems_mfa_required" => "true"
}
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {spec}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extra_rdoc_files = ["README.md"]
spec.add_dependency "activemodel"
spec.add_dependency "attr_extras"
spec.add_dependency "matrix"
spec.add_dependency "prawn", "~> 2.2"
spec.add_dependency "prawn-table", "~> 0.2"
spec.add_dependency "rake"
spec.add_dependency "virtus"
end