-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathGemfile
More file actions
77 lines (70 loc) · 1.4 KB
/
Gemfile
File metadata and controls
77 lines (70 loc) · 1.4 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '6.1.7.10'
gem 'acts_as_paranoid'
gem 'airbrake'
gem 'bcrypt'
gem 'bech32'
gem 'bootstrap_form'
gem 'cancancan'
gem 'coffee-rails'
gem 'demoji'
gem 'devise'
gem 'devise-i18n'
gem 'dusen'
gem 'easy_gravatar'
gem 'haml-rails'
gem 'http_accept_language'
gem 'i18n-js'
gem 'jbuilder'
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'kaminari'
gem 'kaminari-i18n'
gem 'money-tree'
gem 'mysql2', group: :production
gem 'octokit'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'puma'
gem 'rails-i18n'
gem 'render_csv'
gem 'rest-client'
gem 'sass-rails'
gem 'sawyer'
gem 'sdoc', group: :doc, require: false
gem 'sprockets'
gem 'turbolinks'
gem 'twitter-bootstrap-rails'
gem 'uglifier'
group :development do
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
# add ed25519 support to net-ssh
gem 'bcrypt_pbkdf'
gem 'ed25519'
gem 'rbnacl'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'pry'
gem 'pry-byebug'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'sqlite3', '~> 1.4'
end
group :test do
gem 'cucumber-rails', '~> 1.0', require: false
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'rspec-activemodel-mocks'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'vcr'
gem 'webmock'
end