-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdynamic_forms.gemspec
More file actions
27 lines (24 loc) · 912 Bytes
/
dynamic_forms.gemspec
File metadata and controls
27 lines (24 loc) · 912 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "dynamic_forms/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "dynamic_forms"
s.version = DynamicForms::VERSION
s.authors = ["Alejandro Prado", "Federico Ramallo"]
s.email = ["alejandro.prado@densitylabs.io"]
s.homepage = ""
s.summary = "Summary of DynamicForms."
s.description = "Description of DynamicForms."
s.license = "ISC"
s.files = Dir["{app,config,db,lib,vendor}/**/*", "Rakefile", "README.md"]
s.add_dependency "rails", ">= 5.1.0"
s.add_dependency "kaminari"
s.add_dependency "friendly_id", ">= 5.1.0"
s.add_dependency "jquery-rails"
s.add_dependency "axlsx"
s.add_dependency "axlsx_rails"
s.add_dependency "zip-zip"
s.add_dependency "json_schemer"
s.add_dependency "active_model_serializers"
end