-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
106 lines (79 loc) · 2.44 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
#source 'https://rubygems.global.ssl.fastly.net'
source "http://rubygems.org"
gem "powder"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '>= 6.0.0'
# Use sqlite3 as the database for Active Record
gem 'pg'
gem "mongoid" #, "~> 5.0.0"
gem "mongoid-autoinc" #, '~> 5.0.0'
gem "prettier"
gem "rake"
gem "react-rails", "2.3.1"
gem 'rack-ssl-enforcer'
#gem 'syslogger', '~> 1.6.0'
gem "term-ansicolor"
gem "devise"
#gem 'devise-bootstrap-views'
gem "omniauth-github"
gem 'omniauth-bitbucket' , :git => "https://github.com/reillyse/omniauth-bitbucket"
gem "bitbucket_rest_api"
gem "octokit"
gem "sshkey"
gem "aws-sdk", '~> 3'
gem "net-ssh"
gem "net-scp"
gem "ar_after_transaction"
gem 'actionpack-action_caching' ,github: 'rails/actionpack-action_caching', ref: '7bdfa663274a2620dde8daad7dcb995c1cfef840'
gem "rack-timeout"
gem "rack-cache"
gem "friendly_id"
gem "fog-aws"
gem 'asset_sync'
gem "redis"
gem "sidekiq"
gem "sidekiq-scheduler", '~> 1.2'
gem 'sinatra', :require => nil
gem "active_scheduler"
gem 'simple_form' #, :git => "https://github.com/plataformatec/simple_form.git" , :ref => "d4c51cc7a2095a2b8d12177afa53fad482d959b2"
gem "state_machine", :git => "https://github.com/seuros/state_machine.git"
gem 'haml-rails'
gem 'rb-readline'
# Use SCSS for stylesheets
gem 'sass-rails' , '~> 6.0'
gem "coffee-rails"
# Use Uglifier as compressor for JavaScript assets
#gem 'uglifier', '>= 3.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem "attr_encrypted"
gem "encryptor"
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
gem 'unicorn-rails'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'rails_stdout_logging'
gem 'rails_12factor'
gem "twitter-bootstrap-rails"
gem "sprockets"
gem 'bootstrap-sass'
gem "thwait"
gem "e2mmap"
group :development, :test do
gem "erb2haml", :group => :development
gem "listen"
end
gem "parallel"
gem "ruby-progressbar"
gem 'nio4r', '2.5.8'