forked from AnimaGUS-minerva/fountain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
112 lines (83 loc) · 2.99 KB
/
Gemfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# coding: utf-8
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', "~> 5.2.4.3"
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem "turbolinks"
#gem 'ecdsa', :path => '../minerva/ruby_ecdsa'
gem 'ecdsa', :git => 'https://github.com/AnimaGUS-minerva/ruby_ecdsa.git', :branch => 'ecdsa_interface_openssl'
#gem 'chariwt', :path => '../chariwt'
gem 'chariwt', :git => 'https://github.com/AnimaGUS-minerva/ChariWTs.git', :branch => 'v0.8.0'
gem 'jwt'
#gem "fixture_save", :path => "../fixture_save"
gem 'fixture_save', :git => 'https://github.com/mcr/fixture_save.git'
gem 'jbuilder', '~> 2.0'
gem 'rake', ">= 12.3.3"
gem 'sdoc', '~> 0.4.0'
#gem 'uglifier'
gem 'tzinfo-data'
gem 'mail'
gem 'ffi', '~> 1.10.0'
gem 'bundler', '>= 2.0.1'
# due to alerts
gem "yard", ">= 0.9.20"
gem "nokogiri", ">= 1.10.8"
gem "websocket-extensions", ">= 0.1.5"
gem "rack", ">= 2.1.4"
gem "loofah", ">= 2.3.1"
# Use Capistrano for deployment
gem 'capistrano', '~> 3.11.0', group: :development
gem 'capistrano-rails', group: :development
gem 'capistrano-rvm', group: :development
gem 'capistrano-bundler',group: :development
#gem 'openssl', "~> 2.1.0"
gem 'openssl', :path => "../minerva/ruby-openssl"
#gem 'openssl', :path => '/gems/highway/ruby-openssl'
#gem 'openssl', :git => 'https://github.com/CIRALabs/ruby-openssl.git', :branch => 'ies-cms-dtls'
# CoAP server for Rails.
gem 'coap', :git => 'https://github.com/AnimaGUS-minerva/coap.git', :branch => 'dtls-client'
#gem 'coap', :path => "../minerva/coap"
gem 'celluloid-io', :git => 'https://github.com/AnimaGUS-minerva/celluloid-io.git', :submodules => true
#gem 'celluloid-io', :path => "../minerva/celluloid-io"
gem 'david', :git => 'https://github.com/AnimaGUS-minerva/david.git'
#gem 'david', :path => "../minerva/david"
# use this to get full decoding of HTTP Accept: headers, to be able to
# split off smime-type=voucher in pkcs7-mime, and other parameters
gem 'http-accept'
# IP address management for use in ANIMA ACP
gem 'ipaddress'
# encode/decode cbor messages
gem 'cbor'
gem 'json'
gem 'rabl'
gem 'oj'
gem 'sqlite3', "~> 1.3.6"
gem 'pg', '~> 0.21'
# used in production on SecureHomeGateway
gem 'thin'
gem 'byebug'
# use for background processing of mud files, and interaction with
# mud-controller.
gem 'sucker_punch'
gem 'rb-readline'
group :development, :test do
gem 'therubyracer', platforms: :ruby
gem 'pry'
gem 'pry-doc'
#
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'cbor-diag'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
#gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'webmock'
gem 'sprockets', "~> 3.7.2"
end