-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathforest_liana.gemspec
33 lines (29 loc) · 1.34 KB
/
forest_liana.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "forest_liana/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "forest_liana"
s.version = ForestLiana::VERSION
s.authors = ["Sandro Munda"]
s.email = ["[email protected]"]
s.homepage = 'https://github.com/ForestAdmin/forest-rails'
s.summary = "Official Rails Liana for Forest"
s.description = "Forest is a modern admin interface that works on all major web frameworks. forest_liana is the gem that makes Forest admin work on any Rails application (Rails >= 4.0)."
s.license = "GPL-3.0"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*", "spec/**/*"]
s.add_runtime_dependency "rails", ">= 6.1.7.9"
s.add_runtime_dependency "forestadmin-jsonapi-serializers", ">= 0.14.0"
s.add_runtime_dependency "jwt"
s.add_runtime_dependency "rack-cors"
s.add_runtime_dependency "groupdate", ">= 5.0.0"
s.add_runtime_dependency "useragent"
s.add_runtime_dependency "bcrypt"
s.add_runtime_dependency "httparty"
s.add_runtime_dependency "ipaddress"
s.add_runtime_dependency "json"
s.add_runtime_dependency "json-jwt", ">= 1.16.0"
s.add_runtime_dependency "openid_connect", "1.4.2"
s.add_runtime_dependency "deepsort"
end